-
Notifications
You must be signed in to change notification settings - Fork 0
/
Template.csproj
29 lines (22 loc) · 1.12 KB
/
Template.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<Version>1.0.0</Version>
<PackageId>BDSA.TEMPLATES</PackageId>
<Authors>HelgeCPH</Authors>
<Title>BDSA Templates</Title>
<Description>Razor and Blazor templates for the BDSA Course at ITU of Chopenhagen</Description>
<PackageTags>dotnet new, template</PackageTags>
<PackageIcon>icon1.png</PackageIcon>
<TargetFramework>net7.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="Chirp.Blazor.Initial\**\*" Excludes="Chirp.Blazor.Initial\**\bin\**;Chirp.Blazor.Initial\**\obj\**" />
<Content Include="Chirp.Razor.Initial\**\*" Excludes="Chirp.Razor.Initial\**\bin\**;Chirp.Razor.Initial\**\obj\**" />
<Compile Remove="**\*" />
<None Include="Chirp.Blazor.Initial\Client\wwwroot\images\icon1.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>