-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
25 lines (25 loc) · 1.08 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup Label="Shared NuGet Metadata">
<Authors>Polyadic</Authors>
<PackageLicenseExpression>MIT OR Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/polyadic/funcky-efcore</PackageProjectUrl>
<RepositoryUrl>https://github.com/polyadic/funcky-efcore</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Polyadic.CodeStyle" PrivateAssets="all" />
<PackageReference Include="Funcky.Analyzers" PrivateAssets="all" />
</ItemGroup>
<PropertyGroup Label="Code Style">
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AnalysisLevel>5.0</AnalysisLevel>
</PropertyGroup>
<PropertyGroup Label="Deterministic Builds and Source Link">
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<PropertyGroup>
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
</PropertyGroup>
</Project>