-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
40 lines (32 loc) · 1.51 KB
/
Directory.Build.props
File metadata and controls
40 lines (32 loc) · 1.51 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
38
39
40
<Project>
<PropertyGroup>
<!-- Assembly -->
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<LangVersion>13</LangVersion>
<Nullable>enable</Nullable>
<PlatformTarget>x64</PlatformTarget>
<Copyright>©2026 Kxnrl</Copyright>
<Authors>Kxnrl, BoneTM, laper32, Nukoooo</Authors>
<!-- Version -->
<VersionPrefix>2.1</VersionPrefix>
<VersionSuffix>1</VersionSuffix>
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
<!-- NuGet -->
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Kxnrl/ModSharp-public</PackageProjectUrl>
<PackageReadmeFile>README.nuget.md</PackageReadmeFile>
<PackageTags>ModSharp;CS2</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<!-- Repository -->
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Kxnrl/ModSharp-public</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SourceControlInformationFeatureSupported>true</SourceControlInformationFeatureSupported>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)icon.png" Pack="true" PackagePath="\"/>
<None Include="$(MSBuildThisFileDirectory)README.nuget.md" Pack="true" PackagePath="\"/>
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>