-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathVladislavAntonyukDotnetTemplates.csproj
25 lines (22 loc) · 1.21 KB
/
VladislavAntonyukDotnetTemplates.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>4.0</PackageVersion>
<PackageId>VladislavAntonyuk.DotNetTemplates</PackageId>
<Title>Vladislav Antonyuk .NET Templates</Title>
<Authors>Vladislav Antonyuk</Authors>
<Description>.NET Application templates like cross-platform app with onion architecture and iOS Extensions.</Description>
<PackageTags>dotnet;dotnet-new;templates;onion;architecture;maui;dotnet-maui;ios;extensions;blazor;microsoft-identity;azure-ad</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**;templates\**\packages\**;templates\**\.vs\**;templates\**\.vscode\**;templates\**\.idea\**;templates\**\TestResults\**;" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>