提交 0dff4a37 编写于 作者: A Andy Gocke 提交者: Jared Parsons

Respond to PR comments

上级 0d302a86
......@@ -110,7 +110,7 @@
</PropertyGroup>
<!-- Publish binaries for CoreClr test -->
<MSBuild Projects="src/Test/DeployCoreClrTestRuntime/DeployCoreClrTestRuntime.csproj"
<MSBuild Projects="src\Test\DeployCoreClrTestRuntime\DeployCoreClrTestRuntime.csproj"
Properties="RuntimeIdentifier=win7-x64"
Targets="Publish" />
......@@ -126,7 +126,7 @@
<PropertyGroup>
<VsixExpInstallerExe>$(NuGetPackageRoot)\roslyntools.microsoft.vsixexpinstaller\$(RoslynToolsMicrosoftVSIXExpInstallerVersion)\tools\VsixExpInstaller.exe</VsixExpInstallerExe>
<VsixExpInstallerArgs>/rootSuffix:RoslynDev /vsInstallDir:"$([System.IO.Path]::GetFullPath('$(MSBuildBinPath)\..\..\..'))"</VsixExpInstallerArgs>
<VsixExpInstallerArgs>-rootSuffix:RoslynDev -vsInstallDir:"$([System.IO.Path]::GetFullPath('$(MSBuildBinPath)\..\..\..'))"</VsixExpInstallerArgs>
</PropertyGroup>
<Exec Command="&quot;$(VsixExpInstallerExe)&quot; $(VsixExpInstallerArgs) $(OutputDirectory)\Vsix\CompilerExtension\Roslyn.Compilers.Extension.vsix" />
......
......@@ -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:
......
......@@ -49,8 +49,6 @@
<NuGetPackageRoot Condition="'$(NuGetPackageRoot)' == '' AND '$(OS)' == 'Windows_NT'">$(UserProfile)/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageRoot Condition="'$(NuGetPackageRoot)' == '' AND '$(OS)' != 'Windows_NT'">$(HOME)/.nuget/packages/</NuGetPackageRoot>
<NuGetPackagesDirectory>$(NuGetPackageRoot)</NuGetPackagesDirectory>
<Version Condition="$(Version) == ''">$(NuGetPerBuildPreReleaseVersion)</Version>
</PropertyGroup>
<Choose>
......
......@@ -30,7 +30,7 @@
<Name>CSharpCodeAnalysis</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup Label="Package References">
<ItemGroup>
<PackageReference Include="Microsoft.NETCore.App" Version="$(MicrosoftNETCoreAppVersion)" />
<PackageReference Include="System.Runtime.Loader" Version="$(SystemRuntimeLoaderVersion)" />
</ItemGroup>
......
......@@ -14,6 +14,12 @@
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ServiceablePackage>true</ServiceablePackage>
<CodeAnalysisRuleSet>..\CSharpCodeAnalysisRules.ruleset</CodeAnalysisRuleSet>
<!-- This is required to prevent downgrade references from CscCore/VbcCode since we must
reference Microsoft.NETCore.App to target the shared framework (bug
https://github.com/dotnet/sdk/issues/1159) and NETCore.App
contains a reference to C# + VB CodeAnalysis. This ensures that the project
reference is a higher version than the NuGet reference. -->
<Version>$(NuGetPerBuildPreReleaseVersion)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
......
......@@ -13,6 +13,12 @@
<ServiceablePackage>true</ServiceablePackage>
<NoWarn>$(NoWarn);42014</NoWarn>
<CodeAnalysisRuleSet>..\BasicCodeAnalysisRules.ruleset</CodeAnalysisRuleSet>
<!-- This is required to prevent downgrade references from CscCore/VbcCode since we must
reference Microsoft.NETCore.App to target the shared framework (bug
https://github.com/dotnet/sdk/issues/1159) and NETCore.App
contains a reference to C# + VB CodeAnalysis. This ensures that the project
reference is a higher version than the NuGet reference. -->
<Version>$(NuGetPerBuildPreReleaseVersion)</Version>
</PropertyGroup>
<ItemGroup>
<AssemblyVersionAttribute Include="Microsoft.CodeAnalysis.CommitHashAttribute">
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册