forked from reqnroll/Reqnroll.VisualStudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
28 lines (23 loc) · 1.05 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>
<ReqnrollMainVersion>2024.3</ReqnrollMainVersion>
<ReqnrollBuildNumber>99999</ReqnrollBuildNumber> <!-- set by CI; local build numbers are always greater than ones from CI-->
<VersionSuffix>local</VersionSuffix> <!-- set by CI -->
<ReqnrollPackageVersion>$(ReqnrollMainVersion).$(ReqnrollBuildNumber)</ReqnrollPackageVersion>
<AssemblyVersion>$(ReqnrollMainVersion).0.0</AssemblyVersion>
<VersionPrefix>$(ReqnrollPackageVersion)</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
<ReqnrollPackageDisplayName>Reqnroll for Visual Studio 2022</ReqnrollPackageDisplayName>
</PropertyGroup>
<PropertyGroup>
<GitVersionBaseDirectory>$(MSBuildThisFileDirectory)</GitVersionBaseDirectory>
</PropertyGroup>
<PropertyGroup>
<NoWarn>VSTHRD010;VSTHRD110;NU1603;VSTHRD200</NoWarn>
<!--VSTHRD200: Use "Async" suffix in names of methods that return an awaitable type.-->
<LangVersion>11</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>