-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathSmartSql.Test.Unit.csproj
More file actions
117 lines (108 loc) · 4.99 KB
/
SmartSql.Test.Unit.csproj
File metadata and controls
117 lines (108 loc) · 4.99 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>false</IsPackable>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Remove="Maps\User.xml" />
<None Remove="SmartSqlMapConfig-Embedded.xml" />
<None Update="Maps\NestTest.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\DefaultAutoConverter.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\AssignAutoConverter.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\DisabledAutoConverter.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\CustomizeTypeHandlerTest.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\FifoCache.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\LruCache.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\RedisCache.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="Maps\User.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="SmartSqlMapConfig-Embedded.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.36" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="Serilog.Extensions.Logging.File" Version="2.0.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.14.0" />
<PackageReference Include="Jint" Version="2.11.58" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SmartSql.Bulk.MsSqlServer\SmartSql.Bulk.MsSqlServer.csproj" />
<ProjectReference Include="..\SmartSql.Bulk.MySqlConnector\SmartSql.Bulk.MySqlConnector.csproj" />
<ProjectReference Include="..\SmartSql.Bulk.MySql\SmartSql.Bulk.MySql.csproj" />
<ProjectReference Include="..\SmartSql.Bulk.PostgreSql\SmartSql.Bulk.PostgreSql.csproj" />
<ProjectReference Include="..\SmartSql.Bulk.SqlServer\SmartSql.Bulk.SqlServer.csproj" />
<ProjectReference Include="..\SmartSql.Cache.Redis\SmartSql.Cache.Redis.csproj" />
<ProjectReference Include="..\SmartSql.DIExtension\SmartSql.DIExtension.csproj" />
<ProjectReference Include="..\SmartSql.DyRepository\SmartSql.DyRepository.csproj" />
<ProjectReference Include="..\SmartSql.InvokeSync\SmartSql.InvokeSync.csproj" />
<ProjectReference Include="..\SmartSql.Options\SmartSql.Options.csproj" />
<ProjectReference Include="..\SmartSql.Oracle\SmartSql.Oracle.csproj" />
<ProjectReference Include="..\SmartSql.ScriptTag\SmartSql.ScriptTag.csproj" />
<ProjectReference Include="..\SmartSql.Test\SmartSql.Test.csproj" />
<ProjectReference Include="..\SmartSql.TypeHandler.PostgreSql\SmartSql.TypeHandler.PostgreSql.csproj" />
<ProjectReference Include="..\SmartSql.TypeHandler\SmartSql.TypeHandler.csproj" />
<ProjectReference Include="..\SmartSql\SmartSql.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Maps\TagTest.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\PlaceholderTest.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\UseIdGenEntity.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\UserExtendedInfo.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\AllPrimitive.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Maps\T_Entity.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SmartSqlMapConfig.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SmartSqlMapConfig.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="DataSource" />
</ItemGroup>
</Project>