-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpaceWarp.PluginInfoProps.csproj
36 lines (34 loc) · 1.73 KB
/
SpaceWarp.PluginInfoProps.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>SpaceWarp.PluginInfoProps</PackageId>
<Version>1.0.0</Version>
<Authors>munix</Authors>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>Helper build target that generates a MyPluginInfo class based on assembly metadata.</Description>
<PackageTags>spacewarp;ksp2;build;props</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<PackageOutputPath>$(SolutionDir)nuget</PackageOutputPath>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/jan-bures/SpaceWarp.PluginInfoProps</RepositoryUrl>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<IncludeBuildOutput>false</IncludeBuildOutput>
<IncludeContentInPack>true</IncludeContentInPack>
<ContentTargetFolders>build</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include="SpaceWarp.PluginInfoProps.props" />
<Compile Remove="**\*" />
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>