-
Notifications
You must be signed in to change notification settings - Fork 79
/
Directory.Build.props
30 lines (30 loc) · 1.17 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<Copyright>MIT license</Copyright>
<Description>OpenSource Tera DPS Meter.</Description>
<Product>ShinraMeter</Product>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'True'">true</ContinuousIntegrationBuild>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<Deterministic>true</Deterministic>
<EmbedAllSources>true</EmbedAllSources>
<LangVersion>8.0</LangVersion>
<RestorePackagesPath>..\packages</RestorePackagesPath>
<CodeAnalysisRuleSet>..\ShinraMeter.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<IsPackable>false</IsPackable>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith('net4'))" >
<DefineConstants>NETFULL</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith('netcore'))" >
<DefineConstants>NETCORE</DefineConstants>
</PropertyGroup>
</Project>