forked from mikependon/RepoDB
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
39 lines (39 loc) · 2.15 KB
/
Directory.Build.props
File metadata and controls
39 lines (39 loc) · 2.15 KB
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
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Authors>AmpScm, Michael Camara Pendon and others</Authors>
<Company>RepoDb</Company>
<Product>RepoDb</Product>
<Version Condition="'$(Version)' == ''">0.0.1-dev</Version>
<LangVersion>14</LangVersion>
<Copyright>Copyright © 2020-2026</Copyright>
<PackageProjectUrl>https://repodb.net/</PackageProjectUrl>
<RepositoryType>Github</RepositoryType>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>portable</DebugType>
<IncludeSymbols>true</IncludeSymbols>
<Nullable>annotations</Nullable>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<DisableTransitiveProjectReferences>true</DisableTransitiveProjectReferences>
<EnableMSTestRunner>true</EnableMSTestRunner>
<TestTargetFrameworks>net10.0;net9.0;net8.0;net48</TestTargetFrameworks>
<TestTargetOutputType>Exe</TestTargetOutputType>
<TestingPlatformDotnetTestRunner>true</TestingPlatformDotnetTestRunner>
<GenerateDocumentationFile Condition="$([System.String]::Copy('$(MSBuildProjectName)').ToLower().Contains('test')) == 'false'">true</GenerateDocumentationFile>
<!-- We don't have resources ourselves, and we don't need any during testing... Others will flow through nuget -->
<SatelliteResourceLanguages>en;en-US</SatelliteResourceLanguages>
</PropertyGroup>
<PropertyGroup>
<!-- Reduce tests while running inside VS -->
<TestTargetFrameworks Condition="'$(VisualStudioVersion)' != '' and '$(BuildingInsideVisualStudio)' == 'true'">net10.0</TestTargetFrameworks>
</PropertyGroup>
<ItemGroup Condition=" '$(MSBuildProjectName)' != '' and $(MSBuildProjectName.Contains('Test')) and '$(BuildingInsideVisualStudio)' != 'true'">
<PackageReference Include="GitHubActionsTestLogger" />
</ItemGroup>
</Project>