-
Notifications
You must be signed in to change notification settings - Fork 455
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
shuxinqin
committed
Dec 19, 2021
1 parent
b5c1397
commit bbec208
Showing
11 changed files
with
81 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,73 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<!--<TargetFramework>netcoreapp2.0</TargetFramework>--> | ||
<!--<TargetFramework>net45</TargetFramework>--> | ||
<TargetFrameworks>netcoreapp2.0;net45</TargetFrameworks> | ||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<!--<TargetFramework>net45</TargetFramework>--> | ||
<!--<TargetFrameworks>netcoreapp3.1;net45</TargetFrameworks>--> | ||
|
||
<AssemblyName>ChloeDemo</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<PackageId>ChloeDemo</PackageId> | ||
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50</PackageTargetFallback> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
</PropertyGroup> | ||
<AssemblyName>ChloeDemo</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<PackageId>ChloeDemo</PackageId> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'"> | ||
<DefineConstants>netcore</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'net45'"> | ||
<DefineConstants>netfx</DefineConstants> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="5.0.1" /> | ||
</ItemGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'"> | ||
<DefineConstants>netcore</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'net45'"> | ||
<DefineConstants>netfx</DefineConstants> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="5.0.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Chloe.Extension\Chloe.Extension.csproj" /> | ||
<ProjectReference Include="..\Chloe.Oracle\Chloe.Oracle.csproj" /> | ||
<ProjectReference Include="..\Chloe\Chloe.csproj" /> | ||
<ProjectReference Include="..\Chloe.MySql\Chloe.MySql.csproj" /> | ||
<ProjectReference Include="..\Chloe.SQLite\Chloe.SQLite.csproj" /> | ||
<ProjectReference Include="..\Chloe.SqlServer\Chloe.SqlServer.csproj" /> | ||
<ProjectReference Include="..\Chloe.PostgreSQL\Chloe.PostgreSQL.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Chloe.Extension\Chloe.Extension.csproj" /> | ||
<ProjectReference Include="..\Chloe.Oracle\Chloe.Oracle.csproj" /> | ||
<ProjectReference Include="..\Chloe\Chloe.csproj" /> | ||
<ProjectReference Include="..\Chloe.MySql\Chloe.MySql.csproj" /> | ||
<ProjectReference Include="..\Chloe.SQLite\Chloe.SQLite.csproj" /> | ||
<ProjectReference Include="..\Chloe.SqlServer\Chloe.SqlServer.csproj" /> | ||
<ProjectReference Include="..\Chloe.PostgreSQL\Chloe.PostgreSQL.csproj" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp2.0|AnyCPU'"> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'"> | ||
<PackageReference Include="Microsoft.Data.Sqlite" Version="1.0.1" /> | ||
<PackageReference Include="MySql.Data" Version="8.0.15" /> | ||
<!--<PackageReference Include="MySqlConnector" Version="0.63.2" />--> | ||
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="2.12.0-beta2" /> | ||
<PackageReference Include="Npgsql" Version="4.0.0" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'"> | ||
<PackageReference Include="Microsoft.Data.Sqlite" Version="1.0.1" /> | ||
<PackageReference Include="MySql.Data" Version="8.0.15" /> | ||
<!--<PackageReference Include="MySql.Data" Version="8.0.27" />--> | ||
<!--<PackageReference Include="MySqlConnector" Version="0.63.2" />--> | ||
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="2.12.0-beta2" /> | ||
<PackageReference Include="Npgsql" Version="4.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net45'"> | ||
<PackageReference Include="Npgsql" Version="4.0.0" /> | ||
<Reference Include="MySql.Data"> | ||
<HintPath>..\lib\MySql.Data.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Oracle.ManagedDataAccess"> | ||
<HintPath>..\lib\Oracle.ManagedDataAccess.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System.Data.SQLite"> | ||
<HintPath>..\lib\System.Data.SQLite.dll</HintPath> | ||
</Reference> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net45'"> | ||
<PackageReference Include="Npgsql" Version="4.0.0" /> | ||
<Reference Include="MySql.Data"> | ||
<HintPath>..\lib\MySql.Data.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Oracle.ManagedDataAccess"> | ||
<HintPath>..\lib\Oracle.ManagedDataAccess.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System.Data.SQLite"> | ||
<HintPath>..\lib\System.Data.SQLite.dll</HintPath> | ||
</Reference> | ||
|
||
<Content Include="x64\SQLite.Interop.dll"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="x86\SQLite.Interop.dll"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<Content Include="x64\SQLite.Interop.dll"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="x86\SQLite.Interop.dll"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters