Skip to content

Commit 20b6d71

Browse files
committed
Updates mpu.
1 parent a81f3b7 commit 20b6d71

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/mpu/AssetFileImporter.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ public sealed class AssetFileImporter
5050
public AssetFileImporter() { }
5151

5252
/// <summary>
53-
/// Assembles the asset tree from MsgPack.Xamarin.iOS.csproj file.
53+
/// Assembles the asset tree from MsgPack.Unity3D.csproj file.
5454
/// </summary>
5555
/// <param name="sourceProjectPath">
56-
/// The source project file path which points to MsgPack.Xamarin.iOS.csproj.
57-
/// If omitted, ./src/MsgPack.Xamarin.iOS/MsgPack.Xamarin.iOS.csproj will be used.
56+
/// The source project file path which points to MsgPack.Unity3D.csproj.
57+
/// If omitted, ./src/MsgPack.Unity3D/MsgPack.Unity3D.csproj will be used.
5858
/// </param>
5959
/// <param name="outputDirectoryPath">
6060
/// The output directory path the copied source file (assets file) will be placed.
@@ -76,7 +76,7 @@ public void AssembleAssetTree( string sourceProjectPath, string outputDirectoryP
7676
sourceProjectPath =
7777
String.Format(
7878
CultureInfo.InvariantCulture,
79-
".{0}src{0}MsgPack.Xamarin.iOS{0}MsgPack.Xamarin.iOS.csproj",
79+
".{0}src{0}MsgPack.Unity3D{0}MsgPack.Unity3D.csproj",
8080
Path.DirectorySeparatorChar
8181
);
8282
}

src/mpu/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ private static int Execute( IEnumerable<string> args )
9999
_ => action = action != null ? Action.ShowHelp : Action.GenerateSerializers
100100
},
101101
{
102-
"p|project=", "[library, optional] Specify MsgPack.Xamarin.iOS.csproj path. Default is './src/MsgPack.Xamarin.iOS/MsgPack.Xamarin.iOS.csproj'.",
102+
"p|project=", "[library, optional] Specify MsgPack.Unity3D.csproj path. Default is './src/MsgPack.Unity3D/MsgPack.Unity3D.csproj'.",
103103
value => sourceProjectPath = value
104104
},
105105
{

0 commit comments

Comments
 (0)