-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
62 lines (62 loc) · 2.64 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net48</TargetFrameworks>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<Company>BlackbirdSql</Company>
<Product>NETProvider</Product>
<Authors>BlackbirdSql</Authors>
<CopyrightEndYear>2024</CopyrightEndYear>
<PackageProjectUrl>https://www.blackbirdsql.org/</PackageProjectUrl>
<PackageIconUrl>https://github.com/BlackbirdSQL/Firebird-DDEX-SqlEditor/tree/master/Resources/blackbird-128x128.png</PackageIconUrl>
<RepositoryUrl>https://github.com/BlackbirdSQL/Firebird-DDEX-SqlEditor.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<MinClientVersion>3.6</MinClientVersion>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseFile>Properties\license.txt</PackageLicenseFile>
<PackageReadmeFile>https://github.com/BlackbirdSQL/Firebird-DDEX-SqlEditor/blob/master/README.md</PackageReadmeFile>
<PackageIcon>Resources\blackbird-128x128.png</PackageIcon>
<ApplicationIcon>$(SolutionDir)Resources\blackbirdsql.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<Version>14.5.3.1002</Version>
<VersionPrefix>14.5.3.1002</VersionPrefix>
<VersionSuffix>release</VersionSuffix>
</PropertyGroup>
<!-- Provider -->
<PropertyGroup>
<ProviderVersion>10.3.1</ProviderVersion>
<ProviderVersionPrefix>10.3.1</ProviderVersionPrefix>
<ProviderVersionSuffix>release</ProviderVersionSuffix>
<ProviderReferencePackageVersion>[10.0.0,10.3.1]</ProviderReferencePackageVersion>
</PropertyGroup>
<!-- EF6 -->
<PropertyGroup>
<EF6ProviderVersion>10.0.1</EF6ProviderVersion>
<EF6ProviderPackageVersion>[10.0.0,10.0.1]</EF6ProviderPackageVersion>
<EF6ReferencePackageVersion>6.4.4</EF6ReferencePackageVersion>
</PropertyGroup>
<!-- EFCore -->
<PropertyGroup>
<EFCoreProviderVersion>11.0.0</EFCoreProviderVersion>
<EFCoreReferenceProviderVersion>10.3.1</EFCoreReferenceProviderVersion>
<EFCoreReferencePackageVersion>8.0.4</EFCoreReferencePackageVersion>
</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>