|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>net5.0</TargetFramework> |
| 4 | + <IncludeContentInPack>true</IncludeContentInPack> |
| 5 | + <IncludeBuildOutput>false</IncludeBuildOutput> |
| 6 | + <ContentTargetFolders>content</ContentTargetFolders> |
| 7 | + <EnableDefaultItems>false</EnableDefaultItems> |
| 8 | + <NoDefaultExcludes>true</NoDefaultExcludes> |
| 9 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 10 | + <PackageOutputPath>.</PackageOutputPath> |
| 11 | + </PropertyGroup> |
| 12 | + |
| 13 | + <ItemGroup> |
| 14 | + <Content Include="src\**\*" Exclude="**\bin\**\*;**\obj\**\*" /> |
| 15 | + <Content Include="tests\**\*" Exclude="**\bin\**\*;**\obj\**\*" /> |
| 16 | + <Content Include=".template.config\**\*" /> |
| 17 | + <Content Include="*" Exclude="nuget.csproj" /> |
| 18 | + <Compile Remove="**\*" /> |
| 19 | + </ItemGroup> |
| 20 | + |
| 21 | + <PropertyGroup> |
| 22 | + <PackageType>Template</PackageType> |
| 23 | + <PackageVersion>1.0.0</PackageVersion> |
| 24 | + <PackageId>StaticSphere.CleanArchitecture.Api</PackageId> |
| 25 | + <Title>Clean Architecture Solution</Title> |
| 26 | + <Company>StaticSphere</Company> |
| 27 | + <Authors>Jamie Nordmeyer</Authors> |
| 28 | + <Copyright>Jamie Nordmeyer © 2020</Copyright> |
| 29 | + <Description>Creates a .NET 5 solution based on the Clean Architecture pattern.</Description> |
| 30 | + <PackageTags>c#;asp.net;core;template;web</PackageTags> |
| 31 | + <PackageCopyright>Jamie Nordmeyer © 2020</PackageCopyright> |
| 32 | + <PackageProjectUrl>https://github.com/StaticSphere/clean-architecture-dotnet-template</PackageProjectUrl> |
| 33 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 34 | + <RepositoryType>git</RepositoryType> |
| 35 | + <RepositoryUrl>https://github.com/StaticSphere/clean-architecture-dotnet-template</RepositoryUrl> |
| 36 | + </PropertyGroup> |
| 37 | +</Project> |
0 commit comments