summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/GenerateCompilerResponseFile.targets
diff options
context:
space:
mode:
authorAaron Robinson <arobins@microsoft.com>2019-05-06 10:19:49 -0700
committerGitHub <noreply@github.com>2019-05-06 10:19:49 -0700
commit099177b0899156a4e8a352083a273805240c0ccd (patch)
tree85c3f7c449ee3ed8b725c7212379914e7706e74f /src/System.Private.CoreLib/GenerateCompilerResponseFile.targets
parent7681c19e4a6f2b5a82abf6268e96eb9140f08bb7 (diff)
downloadcoreclr-099177b0899156a4e8a352083a273805240c0ccd.tar.gz
coreclr-099177b0899156a4e8a352083a273805240c0ccd.tar.bz2
coreclr-099177b0899156a4e8a352083a273805240c0ccd.zip
Port all managed product binaries to use SDK style projects (#24285)
Convert managed product binary to use SDK project system. - Uses Arcade for versions strings - Overrides Arcade defined output paths - should change in the future
Diffstat (limited to 'src/System.Private.CoreLib/GenerateCompilerResponseFile.targets')
-rw-r--r--src/System.Private.CoreLib/GenerateCompilerResponseFile.targets12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/System.Private.CoreLib/GenerateCompilerResponseFile.targets b/src/System.Private.CoreLib/GenerateCompilerResponseFile.targets
index ed9136ffc6..3801c76c0d 100644
--- a/src/System.Private.CoreLib/GenerateCompilerResponseFile.targets
+++ b/src/System.Private.CoreLib/GenerateCompilerResponseFile.targets
@@ -5,18 +5,22 @@
</PropertyGroup>
<Target Name="GenerateCompilerResponseFile">
- <Message Text="Generating module name response file: $(IntermediateOutputPath)\moduleName.$(AssemblyName).rsp" />
+ <PropertyGroup>
+ <GeneratedCompilerResponseFile>$(IntermediateOutputPath)/moduleName.$(AssemblyName).rsp</GeneratedCompilerResponseFile>
+ </PropertyGroup>
+
+ <Message Text="Generating module name response file: $(GeneratedCompilerResponseFile)" />
<!-- We need to set the runtimemetadataversion -->
- <WriteLinesToFile File="$(IntermediateOutputPath)\moduleName.$(AssemblyName).rsp"
+ <WriteLinesToFile File="$(GeneratedCompilerResponseFile)"
Lines="/runtimemetadataversion:v4.0.30319"
Overwrite="true" />
<ItemGroup>
- <Clean Include="$(IntermediateOutputPath)\moduleName.$(AssemblyName).rsp" />
+ <Clean Include="$(GeneratedCompilerResponseFile)" />
</ItemGroup>
<PropertyGroup>
- <CompilerResponseFile>$(IntermediateOutputPath)\moduleName.$(AssemblyName).rsp;$(CompilerResponseFile)</CompilerResponseFile>
+ <CompilerResponseFile>$(GeneratedCompilerResponseFile);$(CompilerResponseFile)</CompilerResponseFile>
</PropertyGroup>
</Target>
</Project> \ No newline at end of file