-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHydroTemplates.csproj
More file actions
36 lines (34 loc) · 1.51 KB
/
HydroTemplates.csproj
File metadata and controls
36 lines (34 loc) · 1.51 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>
<TargetFramework>net9.0</TargetFramework>
<PackageType>Template</PackageType>
<PackageId>Hydro.Templates</PackageId>
<Title>Hydro templates</Title>
<Description>Hydro templates</Description>
<Authors>Krzystof Jeske</Authors>
<Copyright>Copyright (c) Krzysztof Jeske</Copyright>
<Description>Hydro</Description>
<PackageTags>dotnet-new;templates;hydro</PackageTags>
<PackageProjectUrl>https://github.com/hydrostack/hydro-templates</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/hydrostack/hydro-templates.git</RepositoryUrl>
<RepositoryType>GIT</RepositoryType>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RootNamespace>HydroTemplate</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="4.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>