-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDbaClientX.SqlServer.csproj
More file actions
56 lines (56 loc) · 2.51 KB
/
Copy pathDbaClientX.SqlServer.csproj
File metadata and controls
56 lines (56 loc) · 2.51 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
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>DbaClientX SQL Server provider</Description>
<AssemblyName>DbaClientX.SqlServer</AssemblyName>
<AssemblyTitle>DbaClientX.SqlServer</AssemblyTitle>
<VersionPrefix>0.9.0</VersionPrefix>
<TargetFrameworks Condition=" '$([MSBuild]::IsOsPlatform(`Windows`))' ">net472;net8.0;net10.0</TargetFrameworks>
<TargetFrameworks Condition=" '$([MSBuild]::IsOsPlatform(`OSX`))' Or '$([MSBuild]::IsOsPlatform(`Linux`))' ">net8.0;net10.0</TargetFrameworks>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Company>Evotec</Company>
<Authors>Przemyslaw Klys</Authors>
<LangVersion>Latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>DBAClientX.SqlServer</PackageId>
<PackageProjectUrl>https://github.com/EvotecIT/DBAClientX</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
<DelaySign>False</DelaySign>
<IsPublishable>True</IsPublishable>
<RepositoryUrl>https://github.com/EvotecIT/DBAClientX</RepositoryUrl>
<DebugType>portable</DebugType>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<SignAssembly>False</SignAssembly>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0' or '$(TargetFramework)' == 'net10.0'">
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\DbaClientX.Core\DbaClientX.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.SqlClient" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<Reference Include="System.Data.Common" />
</ItemGroup>
<ItemGroup>
<Using Include="System.Collections" />
<Using Include="System.Threading.Tasks" />
<Using Include="System.Collections.Concurrent" />
<Using Include="System.Threading" />
<Using Include="System" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Linq" />
<Using Include="System.Text" />
<Using Include="System.IO" />
<Using Include="System.Net" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>