-
Notifications
You must be signed in to change notification settings - Fork 2
/
Directory.Build.props
30 lines (28 loc) · 1.38 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
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<ImplicitUsings>true</ImplicitUsings>
<WarningsAsErrors>nullable</WarningsAsErrors>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Mutagen-Modding/Mutagen.Bethesda.Serialization</PackageProjectUrl>
<RepositoryUrl>https://github.com/Mutagen-Modding/Mutagen.Bethesda.Serialization</RepositoryUrl>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<Copyright>2024</Copyright>
<Company>Mutagen</Company>
<Product>Mutagen</Product>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReleaseNotes>Bethesda Modding</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Noggog</Authors>
<PackageOutputPath>..\nupkg</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All"/>
<PackageReference Include="GitVersion.MsBuild">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>