-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathDirectory.Build.props
38 lines (34 loc) · 1.57 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
31
32
33
34
35
36
37
38
<Project>
<PropertyGroup>
<ProjectBaseVersion>0.12.0</ProjectBaseVersion>
<ProjectVersion Condition="'$(GITHUB_RUN_NUMBER)' != ''">$(ProjectBaseVersion).$(GITHUB_RUN_NUMBER)</ProjectVersion>
<ProjectVersion Condition="'$(GITHUB_RUN_NUMBER)' == ''">$(ProjectBaseVersion).0</ProjectVersion>
<AssemblyVersion>$(ProjectBaseVersion)</AssemblyVersion>
<FileVersion>$(ProjectVersion)</FileVersion>
<Version>$(ProjectVersion)</Version>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<NeutralLanguage>en</NeutralLanguage>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<Authors>ValveKeyValue Contributors</Authors>
<Copyright>Copyright © ValveKeyValue Contributors</Copyright>
<RepositoryUrl>https://github.com/ValveResourceFormat/ValveKeyValue</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://valveresourceformat.github.io/</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.IO" />
<Using Include="System.Collections.Generic" />
</ItemGroup>
</Project>