-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
48 lines (42 loc) · 1.82 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
39
40
41
42
43
44
45
46
47
48
<!--EXTERNAL_PROPERTIES: MSBuildThisFileDirectory-->
<Project>
<PropertyGroup>
<LangVersion>11.0</LangVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile></DocumentationFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<NullableReferenceTypes>true</NullableReferenceTypes>
<DefineConstants>TRACE;$(Platform)</DefineConstants>
<CheckForDuplicateItems>false</CheckForDuplicateItems>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup>
<Version>$([System.IO.File]::ReadAllText("$(MSBuildThisFileDirectory).version"))</Version>
</PropertyGroup>
<PropertyGroup>
<Company>exomia</Company>
<Authors>exomia; Daniel Bätz; Daniel Baumert</Authors>
<Copyright>Copyright © $([System.DateTime]::Now.Year) exomia</Copyright>
</PropertyGroup>
<PropertyGroup>
<RepositoryUrl>https://github.com/exomia/vulkan-api</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Exomia.Vulkan.Api.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup>
<NoWarn>1701;1702;IDE0063;IDE0079;CA1401;CA1069;CS1572;CS0618</NoWarn>
<WarningsAsErrors>NU1605;CS8034</WarningsAsErrors>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory).editorconfig" Link=".editorconfig" />
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" Visible="false" PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)icon.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
</Project>