|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 |
| - |
3 | 2 | <PropertyGroup>
|
4 |
| - <PackageType>Template</PackageType> |
5 |
| - <PackageVersion>1.0</PackageVersion> |
6 |
| - <PackageId>AspNetCoreTemplate</PackageId> |
7 |
| - <Title>ASP.NET-Core-Template</Title> |
8 |
| - <Authors>Nikolay Kostov</Authors> |
9 |
| - <Description>A ready-to-use template for ASP.NET Core with repositories, services, models mapping, DI and StyleCop warnings fixed.</Description> |
10 | 3 | <TargetFramework>netcoreapp3.1</TargetFramework>
|
11 |
| - |
12 | 4 | <IncludeContentInPack>true</IncludeContentInPack>
|
13 | 5 | <IncludeBuildOutput>false</IncludeBuildOutput>
|
14 | 6 | <ContentTargetFolders>content</ContentTargetFolders>
|
15 | 7 | <EnableDefaultItems>false</EnableDefaultItems>
|
16 | 8 | <NoDefaultExcludes>true</NoDefaultExcludes>
|
17 |
| - </PropertyGroup> |
18 |
| - |
19 |
| - <PropertyGroup> |
20 | 9 | <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
21 |
| - <PackageOutputPath>./ASP.NET Core Template</PackageOutputPath> |
22 |
| - |
23 |
| - <PackageTags>c#;asp.net;core;template</PackageTags> |
24 |
| - <PackageCopyright>Nikolay Kostov</PackageCopyright> |
25 |
| - <PackageProjectUrl>https://github.com/NikolayIT/ASP.NET-Core-Template</PackageProjectUrl> |
| 10 | + <PackageOutputPath>.</PackageOutputPath> |
26 | 11 | </PropertyGroup>
|
27 | 12 |
|
28 | 13 | <ItemGroup>
|
29 |
| - <Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" /> |
| 14 | + <Content Include="src\**\*" Exclude="src\**\bin\**;src\**\obj\**" /> |
30 | 15 | <Compile Remove="**\*" />
|
31 | 16 | </ItemGroup>
|
32 |
| - |
| 17 | + |
| 18 | + <PropertyGroup> |
| 19 | + <PackageType>Template</PackageType> |
| 20 | + <Version>1.0.0</Version> |
| 21 | + <PackageId>AspNetCoreTemplate</PackageId> |
| 22 | + <Title>ASP.NET Core Template</Title> |
| 23 | + <Company>Nikolay.IT</Company> |
| 24 | + <Authors>Nikolay.IT</Authors> |
| 25 | + <Copyright>Nikolay.IT © 2020</Copyright> |
| 26 | + <Description>A ready-to-use template for ASP.NET Core with repositories, services, models mapping, DI and StyleCop warnings fixed.</Description> |
| 27 | + <PackageTags>c#;asp.net;core;template;web</PackageTags> |
| 28 | + <PackageCopyright>Nikolay.IT © 2020</PackageCopyright> |
| 29 | + <PackageProjectUrl>https://github.com/NikolayIT/ASP.NET-Core-Template</PackageProjectUrl> |
| 30 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 31 | + <RepositoryType>git</RepositoryType> |
| 32 | + <RepositoryUrl>https://github.com/NikolayIT/ASP.NET-Core-Template</RepositoryUrl> |
| 33 | + </PropertyGroup> |
33 | 34 | </Project>
|
0 commit comments