rename resgen to dotnet-resgen

This commit is contained in:
shahid-pk 2015-12-01 22:12:04 +05:00
parent 124e8f74bc
commit e02c8e6f81
4 changed files with 4 additions and 4 deletions

View file

@ -47,6 +47,6 @@ compilers, package managers and other utilities that developers need.",
"bin/dotnet-repl-csi" : "usr/bin/dotnet-repl-csi", "bin/dotnet-repl-csi" : "usr/bin/dotnet-repl-csi",
"bin/dotnet-restore" : "usr/bin/dotnet-restore", "bin/dotnet-restore" : "usr/bin/dotnet-restore",
"bin/dotnet-test" : "usr/bin/dotnet-test", "bin/dotnet-test" : "usr/bin/dotnet-test",
"bin/resgen" : "usr/bin/resgen" "bin/dotnet-resgen" : "usr/bin/dotnet-resgen"
} }
} }

View file

@ -11,7 +11,7 @@ ln -s $2/bin/dotnet-publish /usr/local/bin/
ln -s $2/bin/dotnet-restore /usr/local/bin/ ln -s $2/bin/dotnet-restore /usr/local/bin/
ln -s $2/bin/dotnet-restore /usr/local/bin/ ln -s $2/bin/dotnet-restore /usr/local/bin/
ln -s $2/bin/dotnet-init /usr/local/bin/ ln -s $2/bin/dotnet-init /usr/local/bin/
ln -s $2/bin/resgen /usr/local/bin/ ln -s $2/bin/dotnet-resgen /usr/local/bin/
# A temporary solution to unblock dotnet compile # A temporary solution to unblock dotnet compile
cp $2/bin/corehost /usr/local/bin/ cp $2/bin/corehost /usr/local/bin/

View file

@ -619,7 +619,7 @@ namespace Microsoft.DotNet.Tools.Compiler
// {file}.resx -> {file}.resources // {file}.resx -> {file}.resources
var resourcesFile = Path.Combine(intermediateOutputPath, name); var resourcesFile = Path.Combine(intermediateOutputPath, name);
var result = Command.Create("resgen", $"\"{fileName}\" \"{resourcesFile}\"") var result = Command.Create("dotnet-resgen", $"\"{fileName}\" \"{resourcesFile}\"")
.ForwardStdErr() .ForwardStdErr()
.ForwardStdOut() .ForwardStdOut()
.Execute(); .Execute();

View file

@ -1,5 +1,5 @@
{ {
"name": "resgen", "name": "dotnet-resgen",
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "compilationOptions": {
"emitEntryPoint": true "emitEntryPoint": true