-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockTemplate.ProjectTemplate.csproj
More file actions
36 lines (31 loc) · 1.69 KB
/
Copy pathDockTemplate.ProjectTemplate.csproj
File metadata and controls
36 lines (31 loc) · 1.69 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0.0</PackageVersion>
<PackageId>DockTemplate.ProjectTemplate</PackageId>
<Title>Avalonia IDE with Dockable Interface Template</Title>
<Authors>DockTemplate Contributors</Authors>
<Description>A batteries-included Avalonia template for building professional desktop applications with dockable interface, plugin architecture, and integrated Blazor dashboard.</Description>
<PackageTags>dotnet-new;templates;avalonia;desktop;ide;dock;plugin;blazor</PackageTags>
<PackageProjectUrl>https://github.com/mbdev87/DockTemplate</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/mbdev87/DockTemplate</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<Content Include="**\*" Exclude="bin\**;obj\**;**\*.user;**\*.suo;.vs\**;.vscode\**;.idea\**;.git\**;Components-Output\**;CLAUDE.md;*.log;temp-plugin-*\**;Plugin-Distribution\**" />
<Compile Remove="**\*" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="icon.png" Pack="true" PackagePath="\" Condition="Exists('icon.png')" />
</ItemGroup>
</Project>