-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
27 lines (22 loc) · 944 Bytes
/
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
<Project>
<PropertyGroup>
<!-- C# version for all assemblies -->
<LangVersion>13.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- NuGet -->
<Version>2.1.0</Version>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
<FileVersion>2.1.0.0</FileVersion>
<Authors>Armin Reiter; Jon Sagara</Authors>
<Copyright>Copyright 2022-2024</Copyright>
<RepositoryUrl>https://github.com/jonsagara/Sagara.FeedReader</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/jonsagara/Sagara.FeedReader</PackageProjectUrl>
<!--
This is really helpful for larger projects, but I leave it in anyway. Why build if you don't have to?
See: https://devblogs.microsoft.com/visualstudio/vs-toolbox-accelerate-your-builds-of-sdk-style-net-projects/
-->
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
</PropertyGroup>
</Project>