-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
28 lines (23 loc) · 998 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
28
<Project>
<PropertyGroup>
<!-- .NET and C# versions for all assemblies -->
<TargetFramework>net8.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- NuGet -->
<Version>2.0.0</Version>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.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>