-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
32 lines (32 loc) · 1.52 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
22
23
24
25
26
27
28
29
30
31
32
<Project>
<PropertyGroup>
<RepoRootPath>$(MSBuildThisFileDirectory)</RepoRootPath>
<LangVersion>latest</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<EnableDynamicPlatformResolution>true</EnableDynamicPlatformResolution>
<GitVersionBaseDirectory>$(MSBuildThisFileDirectory)</GitVersionBaseDirectory>
<PackageOutputPath>$(RepoRootPath)bin\Packages\$(Configuration)\</PackageOutputPath>
</PropertyGroup>
<PropertyGroup>
<Product>.NET Common Utilities</Product>
<Copyright>Copyright © AnakinRaW 2024</Copyright>
<Authors>AnakinRaW</Authors>
<Owners>AnakinRaW</Owners>
<PackageProjectUrl>https://github.com/AnakinRaW/CommonUtilities</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SauceControl.InheritDoc" Version="2.0.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Nerdbank.GitVersioning" Condition="!Exists('packages.config')">
<PrivateAssets>all</PrivateAssets>
<Version>3.6.146</Version>
</PackageReference>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>