forked from FirebirdSQL/NETProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (34 loc) · 1.42 KB
/
Directory.Build.props
File metadata and controls
35 lines (34 loc) · 1.42 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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup>
<VersionPrefix>9.0.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Company>FirebirdSQL</Company>
<Product>NETProvider</Product>
<Authors>FirebirdSQL</Authors>
<PackageProjectUrl>http://www.firebirdsql.org/en/net-provider/</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/FirebirdSQL/NETProvider/master/firebird-logo.png</PackageIconUrl>
<PackageIcon>firebird-logo.png</PackageIcon>
<RepositoryUrl>https://github.com/FirebirdSQL/NETProvider</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<MinClientVersion>3.6</MinClientVersion>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseFile>license.txt</PackageLicenseFile>
</PropertyGroup>
<!-- SourceLink -->
<PropertyGroup Condition="'$(SkipSourceLink)'!='true'">
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup Condition="'$(SkipSourceLink)'!='true'">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>