-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Directory.Build.props
21 lines (21 loc) · 1.06 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project>
<PropertyGroup>
<Authors>Gary Woodfine</Authors>
<TargetFramework>net8.0</TargetFramework>
<Title>Vertical Slice Architecture API template Pack</Title>
<Description>Project template to create vertical slice architecture project</Description>
<RepositoryType>git</RepositoryType>
<PackageTags>api project, vertical slice,repr, rest</PackageTags>
<RepositoryUrl>https://github.com/threenine/api-template</RepositoryUrl>
<Copyright>Copyright © $([System.DateTime]::Now.ToString("yyyy")) Three Nine Consulting Limited</Copyright>
<PackageProjectUrl>https://www.apitemplatepack.com</PackageProjectUrl>
<license>https://github.com/threenine/api-template/blob/master/LICENSE</license>
<PackageIcon>icon.png</PackageIcon>
<Version></Version>
</PropertyGroup>
<ItemGroup>
<Content Include="$(MSBuildThisFileDirectory)icon.png" Pack="true" PackagePath="/">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>