-
-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
50 lines (46 loc) · 3.2 KB
/
Copy pathDirectory.Build.props
File metadata and controls
50 lines (46 loc) · 3.2 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
40
41
42
43
44
45
46
47
48
49
50
<Project>
<PropertyGroup>
<FluentMapPackageVersionPrefix Condition="'$(FluentMapPackageVersionPrefix)' == ''">3.0.1</FluentMapPackageVersionPrefix>
<FluentMapPackageVersionSuffix Condition="'$(Version)' == '' and '$(VersionSuffix)' == '' and '$(FluentMapPackageVersionPrefix)' == '3.0.1'">dev</FluentMapPackageVersionSuffix>
<VersionSuffix Condition="'$(FluentMapPackageVersionSuffix)' != '' and '$(VersionSuffix)' == ''">$(FluentMapPackageVersionSuffix)</VersionSuffix>
<DapperMinimumSupportedVersion>2.1.79</DapperMinimumSupportedVersion>
<DapperLatestStableVersion>2.1.86</DapperLatestStableVersion>
<DapperPackageVersion Condition="'$(DapperPackageVersion)' == ''">[$(DapperMinimumSupportedVersion),3.0.0)</DapperPackageVersion>
<DommelPackageVersion Condition="'$(DommelPackageVersion)' == ''">[3.5.3,4.0.0)</DommelPackageVersion>
</PropertyGroup>
<PropertyGroup>
<NuGetAudit>true</NuGetAudit>
<NuGetAuditMode>all</NuGetAuditMode>
<NuGetAuditLevel>low</NuGetAuditLevel>
<WarningsAsErrors Condition="'$(CI)' == 'true' and '$(WarningsAsErrors)' == ''">NU1901;NU1902;NU1903;NU1904</WarningsAsErrors>
<WarningsAsErrors Condition="'$(CI)' == 'true' and '$(WarningsAsErrors)' != ''">$(WarningsAsErrors);NU1901;NU1902;NU1903;NU1904</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<Authors>Henk Mollema;Rodrigo de Oliveira</Authors>
<Company>Dapper.FluentMap contributors</Company>
<Copyright>Copyright (c) Henk Mollema 2014</Copyright>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/rodri-oliveira-dev/Dapper-FluentMap</RepositoryUrl>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>package-icon.png</PackageIcon>
<PackageReleaseNotes>https://github.com/rodri-oliveira-dev/Dapper-FluentMap/releases</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<DebugType>portable</DebugType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup Condition="'$(MSBuildProjectName)' == 'Dapper.FluentMap' or '$(MSBuildProjectName)' == 'Dapper.FluentMap.Dommel'">
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)assets\package-icon.png" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
<ItemGroup Condition="'$(MSBuildProjectName)' == 'Dapper.FluentMap.DependencyInjection' or '$(MSBuildProjectName)' == 'Dapper.FluentMap.Analyzers' or '$(MSBuildProjectName)' == 'Dapper.FluentMap.Generators'">
<None Include="$(MSBuildProjectDirectory)\README.md" Pack="true" PackagePath="\" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)assets\package-icon.png" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
</Project>