-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathZongsoft.Data.MsSql.csproj
41 lines (38 loc) · 1.57 KB
/
Zongsoft.Data.MsSql.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>6.5.0.0</Version>
<Product>Zongsoft Data Driver for SQL Server</Product>
<Description>This is a data driver for Microsoft SQL Server of the Zongsoft data engine.</Description>
<RootNamespace>Zongsoft.Data.MsSql</RootNamespace>
<IncludeSymbols>true</IncludeSymbols>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/Zongsoft/Framework</PackageProjectUrl>
<RepositoryUrl>https://github.com/Zongsoft/Framework/tree/master/Zongsoft.Data/drivers/mssql</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.SqlClient" VersionOverride="5.2.2" />
</ItemGroup>
<ItemGroup>
<None Include="$(MSBuildProjectName).deploy" Link=".deploy" Pack="true" PackagePath="\.deploy" />
<None Include="$(MSBuildProjectName).plugin" Pack="true" PackagePath="\artifacts" />
</ItemGroup>
<Choose>
<When Condition="$(Configuration)=='Debug'">
<ItemGroup>
<Reference Include="Zongsoft.Core">
<HintPath>..\..\..\Zongsoft.Core\src\bin\$(Configuration)\$(TargetFramework)\Zongsoft.Core.dll</HintPath>
</Reference>
<Reference Include="Zongsoft.Data">
<HintPath>..\..\src\bin\$(Configuration)\$(TargetFramework)\Zongsoft.Data.dll</HintPath>
</Reference>
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<PackageReference Include="Zongsoft.Core" VersionOverride="6.40.4" />
<PackageReference Include="Zongsoft.Data" VersionOverride="6.15.2" />
</ItemGroup>
</Otherwise>
</Choose>
</Project>