-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathVersion.props
More file actions
38 lines (31 loc) · 1.59 KB
/
Version.props
File metadata and controls
38 lines (31 loc) · 1.59 KB
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>
<!-- Configuration -->
<VersionMajor>0</VersionMajor>
<VersionMinor>6</VersionMinor>
<VersionPatch>9</VersionPatch>
<AssemblyVersion>$(VersionMajor).$(VersionMinor).$(VersionPatch)</AssemblyVersion>
<SubstratePackageVersion>0.6.9</SubstratePackageVersion>
<!-- Variables -->
<SubstrateVersion>$(AssemblyVersion)</SubstrateVersion>
<SubstrateCompany>Substrate Gaming</SubstrateCompany>
<SubstrateAuthors>Cedric Decoster</SubstrateAuthors>
<SubstrateRepository>https://github.com/SubstrateGaming/Substrate.NET.Toolchain</SubstrateRepository>
<SubstrateWebsite>https://github.com/SubstrateGaming</SubstrateWebsite>
<SubstrateLicenseFile>LICENSE</SubstrateLicenseFile>
<SubstrateCopyright>Copyright © Substrate Gaming, Switzerland. All rights reserved.</SubstrateCopyright>
<!-- Default supported frameworks -->
<SubstrateDefaultFrameworks>netstandard2.0;netstandard2.1;net6.0</SubstrateDefaultFrameworks>
<!-- Code Style -->
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<!-- Generic Project configuration -->
<Version>$(SubstrateVersion)</Version>
<Company>$(SubstrateCompany)</Company>
<Authors>$(SubstrateAuthors)</Authors>
<Copyright>$(SubstrateCopyright)</Copyright>
<RepositoryUrl>$(SubstrateRepository)</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>$(SubstrateWebsite)</PackageProjectUrl>
<PackageLicenseFile>$(SubstrateLicenseFile)</PackageLicenseFile>
</PropertyGroup>
</Project>