Skip to content

Commit

Permalink
Revert "move to Dapper.AOT.Test.Integration.csproj"
Browse files Browse the repository at this point in the history
This reverts commit e804648.
  • Loading branch information
DeagleGross committed Jul 21, 2024
1 parent acff97e commit 835655b
Show file tree
Hide file tree
Showing 14 changed files with 10 additions and 109 deletions.
7 changes: 0 additions & 7 deletions Dapper.AOT.sln
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "docs", "docs\docs.csproj",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UsageVanilla", "test\UsageVanilla\UsageVanilla.csproj", "{840EA1CA-62FF-409E-89F5-CD3BB269BAE3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dapper.AOT.Test.Integration", "test\Dapper.AOT.Test.Integration\Dapper.AOT.Test.Integration.csproj", "{63423B18-04F1-4571-ABB2-8D0925B0C3EB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -80,10 +78,6 @@ Global
{840EA1CA-62FF-409E-89F5-CD3BB269BAE3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{840EA1CA-62FF-409E-89F5-CD3BB269BAE3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{840EA1CA-62FF-409E-89F5-CD3BB269BAE3}.Release|Any CPU.Build.0 = Release|Any CPU
{63423B18-04F1-4571-ABB2-8D0925B0C3EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{63423B18-04F1-4571-ABB2-8D0925B0C3EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{63423B18-04F1-4571-ABB2-8D0925B0C3EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{63423B18-04F1-4571-ABB2-8D0925B0C3EB}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -97,7 +91,6 @@ Global
{A77B633C-573E-43CD-85A4-8063B33143B4} = {FE215D4B-811B-47BB-9F05-6382DD1C6729}
{C6527566-38F4-43CC-9E0E-91C4B8854774} = {1135D4FD-770E-41DF-920B-A8F75E42A832}
{840EA1CA-62FF-409E-89F5-CD3BB269BAE3} = {9A846B95-90CE-4335-9043-48C5B8EA4FB8}
{63423B18-04F1-4571-ABB2-8D0925B0C3EB} = {9A846B95-90CE-4335-9043-48C5B8EA4FB8}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A89CDAFA-494F-4168-9648-1138BA738D43}
Expand Down

This file was deleted.

30 changes: 0 additions & 30 deletions test/Dapper.AOT.Test.Integration/DbStringTests.cs

This file was deleted.

2 changes: 1 addition & 1 deletion test/Dapper.AOT.Test/Dapper.AOT.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
<None Update="**/*DAP*.*.cs*">
<DependentUpon>$([System.String]::Copy(%(Filename)).Replace('.VB.cs', '.cs'))</DependentUpon>
</None>

</ItemGroup>

<ItemGroup>
<PackageReference Include="Dapper" Condition="'$(TargetFramework)'!='net48'" />
<PackageReference Include="Dapper.StrongName" Condition="'$(TargetFramework)'=='net48'" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Data;
using System.Linq;
using Dapper.AOT.Test.Integration.Setup;
using Xunit;

namespace Dapper.AOT.Test.Integration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Collections.ObjectModel;
using System.Data;
using System.Linq;
using Dapper.AOT.Test.Integration.Setup;
using Xunit;

namespace Dapper.AOT.Test.Integration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Dapper.AOT.Test.Integration.Setup;
using Xunit;

namespace Dapper.AOT.Test.Integration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using Microsoft.Data.SqlClient;
using System;
using System.Collections.Generic;
using Dapper.AOT.Test.Integration.Setup;
using Xunit;

namespace Dapper.AOT.Test.Integration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System;
using Microsoft.Data.SqlClient;
using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Data.SqlClient;
using Xunit;

namespace Dapper.AOT.Test.Integration.Setup;
namespace Dapper.AOT.Test.Integration;

[Collection(SharedSqlClient.Collection)]
public class ManualGridReaderTests : IDisposable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Threading.Tasks;
using Npgsql;
using Npgsql;
using System.Threading.Tasks;
using Testcontainers.PostgreSql;
using Xunit;

namespace Dapper.AOT.Test.Integration.Setup;
namespace Dapper.AOT.Test.Integration;

[CollectionDefinition(Collection)]
public class SharedPostgresqlClient : ICollectionFixture<PostgresqlFixture>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.Collections.Generic;
using System.Data.Common;
using System.Threading.Tasks;
using Dapper.AOT.Test.Integration.Setup;
using Xunit;

namespace Dapper.AOT.Test.Integration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System;
using Microsoft.Data.SqlClient;
using Microsoft.Data.SqlClient;
using System;
using Xunit;

namespace Dapper.AOT.Test.Integration.Setup;
namespace Dapper.AOT.Test.Integration;

[CollectionDefinition(Collection)]
public class SharedSqlClient : ICollectionFixture<SqlClientFixture>
Expand Down
3 changes: 0 additions & 3 deletions test/Dapper.AOT.Test/Interceptors/DbString.output.netfx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,6 @@ namespace Dapper.Aot.Generated
/// <summary>
/// Contains helpers to properly handle <see href="https://github.com/DapperLib/Dapper/blob/main/Dapper/DbString.cs"/>
/// </summary>
#if !DAPPERAOT_INTERNAL
file
#endif
static class DbStringHelpers
{
public static void ConfigureDbStringDbParameter(
Expand Down

0 comments on commit 835655b

Please sign in to comment.