-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathMCS.fsproj
36 lines (30 loc) · 1.07 KB
/
MCS.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net472</TargetFramework>
<Name>MCS</Name>
<BuildDependsOn>$(BuildDependsOn);AfterBuildMigrated</BuildDependsOn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Tailcalls>false</Tailcalls>
<DefineConstants>TRACE;DEBUG;CODE_ANALYSIS</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Tailcalls>true</Tailcalls>
</PropertyGroup>
<Target Name="AfterBuildMigrated">
<ItemGroup>
<FSharpXml Include="$(OutputPath)/FSharp.*.xml" />
</ItemGroup>
<Delete Files="@(FSharpXml)" />
</Target>
<ItemGroup>
<PackageReference Include="Mono.Cecil" />
<PackageReference Include="Mono.CSharp" />
<PackageReference Include="FSharp.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\_Generated\AssemblyVersion.fs" Link="AssemblyVersion.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
</Project>