-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDirectory.Build.props
28 lines (25 loc) · 1.13 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
<Project>
<PropertyGroup>
<VersionPrefix>2.0.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
<Company>Roman Bukin</Company>
<Authors>Roman Bukin</Authors>
<Copyright>Copyright 2020-2023 Roman Bukin</Copyright>
<PackageProjectUrl>https://github.com/vanbukin/Uuids</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/IdentityEngine/IdentityEngine/releases</PackageReleaseNotes>
<RepositoryUrl>https://github.com/vanbukin/Uuids.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisMode>All</AnalysisMode>
<AnalysisLevel>latest</AnalysisLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>