Skip to content

Commit 20f7ba0

Browse files
committed
Add previously missing project properties to ILCompiler.Diagnostics.csproj
1 parent 40164e0 commit 20f7ba0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<OutputType>Library</OutputType>
5+
<AssemblyName>ILCompiler.Diagnostics</AssemblyName>
46
<TargetFramework>$(NetCoreAppToolCurrent)</TargetFramework>
7+
<DefineConstants>READYTORUN;$(DefineConstants)</DefineConstants>
8+
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
9+
<Platforms>x64;x86</Platforms>
10+
<PlatformTarget>AnyCPU</PlatformTarget>
11+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
12+
13+
<!-- We're binplacing these into an existing publish layout so that F5 build in VS updates
14+
the same bits tests expect to see in artifacts/crossgen2. That way we never need to wonder which
15+
binaries are up to date and which are stale. -->
16+
<GenerateDependencyFile>false</GenerateDependencyFile>
17+
<Configurations>Debug;Release;Checked</Configurations>
518
</PropertyGroup>
619

720
</Project>

0 commit comments

Comments
 (0)