-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
37 lines (29 loc) · 1.07 KB
/
Copy pathDirectory.Build.props
File metadata and controls
37 lines (29 loc) · 1.07 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
<Project>
<!-- Solution target framework versions -->
<PropertyGroup>
<DotNetTargetFramework>net8.0</DotNetTargetFramework>
</PropertyGroup>
<!-- Project default settings -->
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<!-- Signing details -->
<PropertyGroup>
<Authors>Antti Veikkolainen</Authors>
<RepositoryUrl>https://github.com/Av3boy/SharpEngine</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<GenerateNuGetPackages>true</GenerateNuGetPackages>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup>
<SilkVersion>2.22.0</SilkVersion>
</PropertyGroup>
</Project>