-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
45 lines (40 loc) · 1.73 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
<Project>
<!-- Set the repository root into a variable -->
<PropertyGroup>
<SourceRoot>$(MSBuildThisFileDirectory)</SourceRoot>
</PropertyGroup>
<!-- Set common properties regarding assembly information and nuget packages -->
<PropertyGroup>
<Authors>Clayton Lautier, Stephen Lautier</Authors>
<Company>Sketch7</Company>
<Product>CoreLibs</Product>
<Copyright>© Sketch7. All rights reserved.</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/sketch7/sketch7.netcore.libs</PackageProjectUrl>
<PackageIcon>package-icon.png</PackageIcon>
<PackageTags>Sketch7 Core C# .NET NETCORE utilities extensions</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<RepositoryUrl>https://github.com/sketch7/sketch7.netcore.libs</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- Note: quite nice to have but since we dont really use, they will simply slow down CI
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource> -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(SourceRoot)/LICENSE" Pack="true" PackagePath=""/>
<None Include="$(SourceRoot)assets/images/package-icon.png" Pack="true" Visible="false" PackagePath="/"/>
</ItemGroup>
<!-- Common compile parameters -->
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);1701;1702;1705;1591</NoWarn>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
</PropertyGroup>
</Project>