Skip to content

Commit 01fe263

Browse files
authored
Merge pull request #24 from trembon/master
MySqlBackup to netstandard2.0
2 parents 61fb787 + 6526a3d commit 01fe263

File tree

3 files changed

+28
-141
lines changed

3 files changed

+28
-141
lines changed
Lines changed: 28 additions & 101 deletions
Original file line numberDiff line numberDiff line change
@@ -1,101 +1,28 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4-
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{2625A6B7-505A-43F7-9282-24AFE5A3DB64}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>MySql.Data.MySqlClient</RootNamespace>
11-
<AssemblyName>MySqlBackup</AssemblyName>
12-
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
13-
<FileAlignment>512</FileAlignment>
14-
<TargetFrameworkProfile>
15-
</TargetFrameworkProfile>
16-
</PropertyGroup>
17-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18-
<DebugSymbols>true</DebugSymbols>
19-
<DebugType>full</DebugType>
20-
<Optimize>false</Optimize>
21-
<OutputPath>bin\Debug\</OutputPath>
22-
<DefineConstants>DEBUG;TRACE</DefineConstants>
23-
<ErrorReport>prompt</ErrorReport>
24-
<WarningLevel>4</WarningLevel>
25-
<Prefer32Bit>false</Prefer32Bit>
26-
</PropertyGroup>
27-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28-
<DebugType>pdbonly</DebugType>
29-
<Optimize>true</Optimize>
30-
<OutputPath>bin\Release\</OutputPath>
31-
<DefineConstants>TRACE</DefineConstants>
32-
<ErrorReport>prompt</ErrorReport>
33-
<WarningLevel>4</WarningLevel>
34-
<Prefer32Bit>false</Prefer32Bit>
35-
</PropertyGroup>
36-
<PropertyGroup>
37-
<SignAssembly>false</SignAssembly>
38-
</PropertyGroup>
39-
<PropertyGroup>
40-
<DelaySign>true</DelaySign>
41-
</PropertyGroup>
42-
<PropertyGroup>
43-
<AssemblyOriginatorKeyFile>ConnectorNetPublicKey.snk</AssemblyOriginatorKeyFile>
44-
</PropertyGroup>
45-
<ItemGroup>
46-
<Reference Include="System" />
47-
<Reference Include="System.Data" />
48-
<Reference Include="System.Xml" />
49-
</ItemGroup>
50-
<ItemGroup>
51-
<Compile Include="EventArgs\ExportCompleteArgs.cs" />
52-
<Compile Include="EventArgs\ExportProgressArgs.cs" />
53-
<Compile Include="EventArgs\GetTotalRowsArgs.cs" />
54-
<Compile Include="EventArgs\ImportCompleteArgs.cs" />
55-
<Compile Include="EventArgs\ImportProgressArgs.cs" />
56-
<Compile Include="InfoObjects\enumRowsDataExportMode.cs" />
57-
<Compile Include="InfoObjects\ExportInformations.cs" />
58-
<Compile Include="InfoObjects\ImportInformations.cs" />
59-
<Compile Include="Methods\CryptoExpress.cs" />
60-
<Compile Include="Methods\QueryExpress.cs" />
61-
<Compile Include="MySqlBackup.cs" />
62-
<Compile Include="MySqlObjects\MySqlColumn.cs" />
63-
<Compile Include="MySqlObjects\MySqlColumnList.cs" />
64-
<Compile Include="MySqlObjects\MySqlDatabase.cs" />
65-
<Compile Include="MySqlObjects\MySqlEvent.cs" />
66-
<Compile Include="MySqlObjects\MySqlEventList.cs" />
67-
<Compile Include="MySqlObjects\MySqlFunction.cs" />
68-
<Compile Include="MySqlObjects\MySqlFunctionList.cs" />
69-
<Compile Include="MySqlObjects\MySqlProcedure.cs" />
70-
<Compile Include="MySqlObjects\MySqlProcedureList.cs" />
71-
<Compile Include="MySqlObjects\MySqlServer.cs" />
72-
<Compile Include="MySqlObjects\MySqlTable.cs" />
73-
<Compile Include="MySqlObjects\MySqlTableList.cs" />
74-
<Compile Include="MySqlObjects\MySqlTrigger.cs" />
75-
<Compile Include="MySqlObjects\MySqlTriggerList.cs" />
76-
<Compile Include="MySqlObjects\MySqlView.cs" />
77-
<Compile Include="MySqlObjects\MySqlViewList.cs" />
78-
<Compile Include="Properties\AssemblyInfo.cs" />
79-
</ItemGroup>
80-
<ItemGroup>
81-
<WCFMetadata Include="Service References\" />
82-
</ItemGroup>
83-
<ItemGroup>
84-
<None Include="app.config" />
85-
<None Include="ConnectorNetPublicKey.snk" />
86-
</ItemGroup>
87-
<ItemGroup>
88-
<ProjectReference Include="..\MySql.Data%286.9.8%29\MySql.Data%286.9.8%29.csproj">
89-
<Project>{e9df5ed1-4cbd-4226-b931-9a51610ac14d}</Project>
90-
<Name>MySql.Data%286.9.8%29</Name>
91-
</ProjectReference>
92-
</ItemGroup>
93-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
94-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
95-
Other similar extension points exist, see Microsoft.Common.targets.
96-
<Target Name="BeforeBuild">
97-
</Target>
98-
<Target Name="AfterBuild">
99-
</Target>
100-
-->
101-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<AssemblyName>MySqlBackup</AssemblyName>
6+
<RootNamespace>MySql.Data.MySqlClient</RootNamespace>
7+
<Product>MySqlBackup.NET</Product>
8+
<PackageId>MySqlBackup.NET</PackageId>
9+
<Version>2.0.12</Version>
10+
<Authors>adriancs</Authors>
11+
<Copyright>Public Domain</Copyright>
12+
<PackageLicenseUrl>https://github.com/MySqlBackupNET/MySqlBackup.Net/blob/master/LICENSE</PackageLicenseUrl>
13+
<PackageProjectUrl>https://github.com/MySqlBackupNET/MySqlBackup.Net</PackageProjectUrl>
14+
<RepositoryUrl>https://github.com/MySqlBackupNET/MySqlBackup.Net</RepositoryUrl>
15+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
16+
<Company />
17+
<Description>A tool to backup and restore MySQL database in C#/VB.NET/ASP.NET.</Description>
18+
</PropertyGroup>
19+
20+
<ItemGroup>
21+
<PackageReference Include="MySql.Data" Version="8.0.12" />
22+
</ItemGroup>
23+
24+
<ItemGroup>
25+
<Folder Include="Properties\" />
26+
</ItemGroup>
27+
28+
</Project>

source code/MySqlBackup/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 36 deletions
This file was deleted.

source code/MySqlBackup/app.config

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)