-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMariana.AVM2.csproj
43 lines (36 loc) · 1.46 KB
/
Mariana.AVM2.csproj
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
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ProjectReference Include="..\Mariana.Common\Mariana.Common.csproj" />
<ProjectReference Include="..\Mariana.CodeGen\Mariana.CodeGen.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Reflection.Metadata" Version="1.8.1" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<Content Remove="src/error_messages.txt" />
<EmbeddedResource Include="src/error_messages.txt">
<LogicalName>error_messages.txt</LogicalName>
</EmbeddedResource>
</ItemGroup>
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>9.0</LangVersion>
<WarningLevel>5</WarningLevel>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>8509,8524</NoWarn>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>false</DebugSymbols>
<Optimize>true</Optimize>
<DocumentationFile>bin/Release/$(TargetFramework)/Mariana.AVM2.xml</DocumentationFile>
</PropertyGroup>
</Project>