From 0dff4a373db72497b2504481590ab12a3422682d Mon Sep 17 00:00:00 2001 From: Andy Gocke Date: Thu, 27 Apr 2017 21:31:17 -0700 Subject: [PATCH] Respond to PR comments --- BuildAndTest.proj | 4 ++-- Makefile | 1 - build/Targets/Versions.props | 2 -- src/Compilers/CSharp/CscCore/CscCore.csproj | 2 +- src/Compilers/CSharp/Portable/CSharpCodeAnalysis.csproj | 6 ++++++ src/Compilers/VisualBasic/Portable/BasicCodeAnalysis.vbproj | 6 ++++++ 6 files changed, 15 insertions(+), 6 deletions(-) diff --git a/BuildAndTest.proj b/BuildAndTest.proj index 49bbc2db17a..c206df89973 100644 --- a/BuildAndTest.proj +++ b/BuildAndTest.proj @@ -110,7 +110,7 @@ - @@ -126,7 +126,7 @@ $(NuGetPackageRoot)\roslyntools.microsoft.vsixexpinstaller\$(RoslynToolsMicrosoftVSIXExpInstallerVersion)\tools\VsixExpInstaller.exe - /rootSuffix:RoslynDev /vsInstallDir:"$([System.IO.Path]::GetFullPath('$(MSBuildBinPath)\..\..\..'))" + -rootSuffix:RoslynDev -vsInstallDir:"$([System.IO.Path]::GetFullPath('$(MSBuildBinPath)\..\..\..'))" diff --git a/Makefile b/Makefile index d8792c8be6b..97cb7e9983b 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,6 @@ bootstrap: restore mkdir -p $(BOOTSTRAP_PATH)/csc && mkdir -p $(BOOTSTRAP_PATH)/vbc && \ dotnet publish -r $(RUNTIME_ID) src/Compilers/CSharp/CscCore -o $(BOOTSTRAP_PATH)/csc && \ dotnet publish -r $(RUNTIME_ID) src/Compilers/VisualBasic/VbcCore -o $(BOOTSTRAP_PATH)/vbc - rm -rf Binaries/$(BUILD_CONFIGURATION) test: diff --git a/build/Targets/Versions.props b/build/Targets/Versions.props index be51c4021eb..a69045eac38 100644 --- a/build/Targets/Versions.props +++ b/build/Targets/Versions.props @@ -49,8 +49,6 @@ $(UserProfile)/.nuget/packages/ $(HOME)/.nuget/packages/ $(NuGetPackageRoot) - - $(NuGetPerBuildPreReleaseVersion) diff --git a/src/Compilers/CSharp/CscCore/CscCore.csproj b/src/Compilers/CSharp/CscCore/CscCore.csproj index 3348911dc83..aa531184bfd 100644 --- a/src/Compilers/CSharp/CscCore/CscCore.csproj +++ b/src/Compilers/CSharp/CscCore/CscCore.csproj @@ -30,7 +30,7 @@ CSharpCodeAnalysis - + diff --git a/src/Compilers/CSharp/Portable/CSharpCodeAnalysis.csproj b/src/Compilers/CSharp/Portable/CSharpCodeAnalysis.csproj index 046bc5a69f0..aa3cbc32d25 100644 --- a/src/Compilers/CSharp/Portable/CSharpCodeAnalysis.csproj +++ b/src/Compilers/CSharp/Portable/CSharpCodeAnalysis.csproj @@ -14,6 +14,12 @@ {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} true ..\CSharpCodeAnalysisRules.ruleset + + $(NuGetPerBuildPreReleaseVersion) diff --git a/src/Compilers/VisualBasic/Portable/BasicCodeAnalysis.vbproj b/src/Compilers/VisualBasic/Portable/BasicCodeAnalysis.vbproj index c9e925f0e6d..844820a61c8 100644 --- a/src/Compilers/VisualBasic/Portable/BasicCodeAnalysis.vbproj +++ b/src/Compilers/VisualBasic/Portable/BasicCodeAnalysis.vbproj @@ -13,6 +13,12 @@ true $(NoWarn);42014 ..\BasicCodeAnalysisRules.ruleset + + $(NuGetPerBuildPreReleaseVersion) -- GitLab