-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
35 lines (30 loc) · 1.25 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
<Project>
<!-- Language Metadata -->
<PropertyGroup>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<LangVersion>preview</LangVersion>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
</PropertyGroup>
<!-- Licensing -->
<PropertyGroup>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageLicenseUrl>https://licenses.nuget.org/MIT</PackageLicenseUrl>
</PropertyGroup>
<!-- Product Information -->
<PropertyGroup>
<Product>StreamKit</Product>
<Authors>SirRandoo</Authors>
<Copyright>Copyright (c) $([System.DateTime]::Now.ToString("yyyy")) SirRandoo</Copyright>
<Description>A component of "StreamKit", a services for the game "RimWorld" that provides allows viewers to affect the game with digital currency they accumulate passively.</Description>
<!-- Urls -->
<RepositoryUrl>https://github.com/sirrandoo/StreamKit</RepositoryUrl>
<PackageProjectUrl>https://docs.sirrandoo.com/streamkit</PackageProjectUrl>
<!-- Misc -->
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- Package Information -->
<PropertyGroup>
<Version>0.1.0</Version>
</PropertyGroup>
</Project>