-
Notifications
You must be signed in to change notification settings - Fork 0
/
NTRightsNet.csproj
35 lines (35 loc) · 1.38 KB
/
NTRightsNet.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<LangVersion>7.2</LangVersion>
<TargetFramework>net40</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<NoWarn />
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<ApplicationIcon>Properties\Program.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>CODE_ANALYSIS;TRACE;DEBUG</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>CODE_ANALYSIS;TRACE</DefineConstants>
<RunCodeAnalysis>true</RunCodeAnalysis>
<CodeAnalysisRuleSet>Properties/CodeAnalysis.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="11.1.0" />
</ItemGroup>
<ItemGroup>
<None Remove=".*" />
<None Remove="_ReSharper*\**" />
<None Remove="*.DotSettings" />
</ItemGroup>
</Project>