-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.props
55 lines (48 loc) · 1.98 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
49
50
51
52
53
54
55
<Project>
<PropertyGroup>
<RepoRootDirectory>$(MSBuildThisFileDirectory)</RepoRootDirectory>
<RepoSrcDirectory>$(MSBuildThisFileDirectory)src/</RepoSrcDirectory>
</PropertyGroup>
<PropertyGroup>
<RepositoryUrl>/~https://github.com/amerkoleci/Vortice.Win32</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- Version -->
<PropertyGroup>
<VersionPrefix>2.2.7</VersionPrefix>
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>13.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseArtifactsOutput>true</UseArtifactsOutput>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<DebugType>embedded</DebugType>
<Features>strict</Features>
<RestoreConfigFile>$(MSBuildThisFileDirectory)NuGet.config</RestoreConfigFile>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);AD0001;CS1591;CS1701;CA2252;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup>
<Authors>Amer Koleci and Contributors</Authors>
<Company>Amer Koleci</Company>
<Copyright>Copyright (c) Amer Koleci and Contributors</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
</PropertyGroup>
<!-- SourceLink -->
<PropertyGroup>
<DebugType>portable</DebugType>
<EmbedAllSources>true</EmbedAllSources>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>