-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
40 lines (34 loc) · 2.02 KB
/
Directory.Build.props
File metadata and controls
40 lines (34 loc) · 2.02 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
39
40
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<NeutralLanguage>en</NeutralLanguage>
<NoWarn>1591;CS7035</NoWarn>
<!--
1591: Missing XML comment for publicly visible type or member (we can't document every single public member)
CS7035: Error CS7035: The specified version string does not conform to the recommended format - major.minor.build.revision (occurs on build server)
-->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageId>$(AssemblyName)</PackageId>
<VersionPrefix>12.0.0</VersionPrefix>
<VersionSuffix>beta.1</VersionSuffix>
<AssemblyVersion>12.0.0.0</AssemblyVersion>
<FileVersion Condition="'$(BUILD_BUILDNUMBER)' == ''">$(VersionPrefix).0</FileVersion>
<FileVersion Condition="'$(BUILD_BUILDNUMBER)' != ''">$(VersionPrefix).$(BUILD_BUILDNUMBER)</FileVersion>
<Authors>Active Solution;Peter Örneholm;Elin Fokine;Tobias Lolax;Marcus Abrahamsson</Authors>
<Company>Active Solution</Company>
<Copyright>Copyright © 2018-2026 Active Solution</Copyright>
<PackageProjectUrl>https://github.com/ActiveLogin/ActiveLogin.Authentication</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/ActiveLogin/ActiveLogin.Authentication.git</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
</Project>