-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
49 lines (44 loc) · 1.76 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!--
Copyright (c) 2024 Sigurd Team
The Sigurd Team licenses this file to you under the LGPL-3.0-OR-LATER license.
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Build configurations -->
<PropertyGroup>
<Configurations>DebugTasks;ReleaseTasks;ReleaseSdk</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<!-- compiler/msbuild switches -->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<DebugType>embedded</DebugType>
</PropertyGroup>
<!-- NuGet metadata -->
<PropertyGroup>
<Authors>Lordfirespeed</Authors>
<Company>Sigurd Team</Company>
<Copyright>2024 Sigurd Team</Copyright>
<IsPackable>false</IsPackable>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
<RepositoryUrl>https://github.com/lc-sigurd/msbuild-thunderstore-sdk</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<Content Include="$(ProjectDir)../README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
<!-- MinVer -->
<PropertyGroup>
<MinVerDefaultPreReleaseIdentifiers>dev</MinVerDefaultPreReleaseIdentifiers>
<MinVerTagPrefix>v</MinVerTagPrefix>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="4.3.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>