-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (22 loc) · 901 Bytes
/
Directory.Build.props
File metadata and controls
26 lines (22 loc) · 901 Bytes
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
<Project>
<ItemGroup>
<PackageReference Include="minver" Version="2.5.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
<PropertyGroup>
<Copyright>Copyright © JohannDev $([System.DateTime]::Now.Year)</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<ProjectUrl>https://github.com/johanndev/spa-templates</ProjectUrl>
<RepositoryUrl>https://github.com/johanndev/spa-templates</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
</Project>