Update Nuget Test

This commit is contained in:
skx 2020-03-31 16:47:15 +08:00
parent a5a81a4491
commit 30b9baf529
6 changed files with 15 additions and 8 deletions

View File

@ -8,9 +8,10 @@
<OutputType>Exe</OutputType>
<RootNamespace>NugetTest</RootNamespace>
<AssemblyName>NugetTest</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
@ -21,6 +22,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
@ -30,10 +32,11 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="SqlSugar, Version=4.9.7.3, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\sqlSugar.4.9.7.3\lib\SqlSugar.dll</HintPath>
<Reference Include="SqlSugar, Version=5.0.0.13, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\sqlSugar.5.0.0.13\lib\SqlSugar.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
@ -48,6 +51,7 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

View File

@ -12,7 +12,7 @@ namespace NugetTest
{
var db = new SqlSugarClient(new ConnectionConfig()
{
ConnectionString = "server=.;uid=sa;pwd=@jhl85661501;database=SqlSugar4XTest",
ConnectionString = "server=.;uid=sa;pwd=haosql;database=SqlSugar4XTest",
IsAutoCloseConnection = true,
DbType = DbType.SqlServer
});

View File

@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="sqlSugar" version="4.9.7.3" targetFramework="net40" />
<package id="sqlSugar" version="5.0.0.13" targetFramework="net40" />
</packages>

View File

@ -6,7 +6,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="sqlSugarCore" Version="4.6.4.7" />
<PackageReference Include="sqlSugarCore" Version="5.0.0.13" />
</ItemGroup>
</Project>

View File

@ -9,14 +9,14 @@ namespace NugetTest
var db = new SqlSugarClient(new ConnectionConfig() {
ConnectionString=Config.ConnectionString,
IsAutoCloseConnection=true,
DbType=DbType.Oracle
DbType=DbType.SqlServer
});
var list = db.Ado.GetInt("select 1");
Console.WriteLine("Hello World!");
}
public class Config
{
public static string ConnectionString = "Database=SqlSugar4xTest;Data Source=127.0.0.1;User Id=root;Password=root;pooling=false;CharSet=utf8;port=3306";
public static string ConnectionString = "server=.;uid=sa;pwd=haosql;database=SQLSUGAR4XTEST";
}
}
}