forked from DitherWither/gircore-blueprint-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGirCoreBlueprint.csproj
38 lines (32 loc) · 1.56 KB
/
GirCoreBlueprint.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
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>0.5</PackageVersion>
<PackageId>TenderOwl.GirCoreTemplate.CSharp</PackageId>
<Title>GirCore Templates</Title>
<Authors>TenderOwl</Authors>
<Description>Templates to use when creating an application using Gircore</Description>
<PackageTags>dotnet-new;templates;gircore;gobject;gtk;gnome;flatpak;</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectURL>https://github.com/tenderowl/gircore-blueprint-template/</PackageProjectURL>
<PackageReleaseNotes>
0.5
- Updated to Gir.Core-0.5.0
- Check for Flatpak environment to load resources properly
</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/tenderowl/gircore-blueprint-template.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<TargetFramework>net8.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<Content Include="template/**/*" Exclude="template/bin/**;template/obj/**;template/build/**; template/flatpak_build/**" />
<Compile Remove="**/*" />
<None Include="README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
</Project>