-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathDirectory.Build.props
28 lines (23 loc) · 1.21 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
<Project>
<PropertyGroup>
<Company>HAVIT, s.r.o.</Company>
<Copyright>Copyright HAVIT, s.r.o.</Copyright>
<VersionPrefix>2.0.0</VersionPrefix>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<Product>HAVIT Blazor Library</Product>
<AssemblyTitle>HAVIT Blazor Library</AssemblyTitle>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<!-- aligned NuGet PackageVersion for package-bundles -->
<ComponentsPackagesVersion>4.7.11</ComponentsPackagesVersion>
<GrpcPackagesVersion>1.6.1</GrpcPackagesVersion>
<EnableMSTestRunner>true</EnableMSTestRunner>
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
<TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
<MSTestAnalysisMode>Recommended</MSTestAnalysisMode>
</PropertyGroup>
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" Condition="Exists($([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../')))"/>
</Project>