-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathDapper.GraphQL.Test.csproj
More file actions
46 lines (35 loc) · 1.38 KB
/
Dapper.GraphQL.Test.csproj
File metadata and controls
46 lines (35 loc) · 1.38 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<IsPackable>false</IsPackable>
<AssemblyVersion>0.4.2.0</AssemblyVersion>
<FileVersion>0.4.2.0</FileVersion>
<Version>0.4.2-beta</Version>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="Sql\1-Create.sql" />
<None Remove="Sql\2-Data.sql" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Sql\1-Create.sql">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Sql\2-Data.sql">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="dbup-core" Version="4.1.0" />
<PackageReference Include="dbup-postgresql" Version="4.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="Npgsql" Version="4.0.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.analyzers" Version="0.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0-rc1-build3809" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Dapper.GraphQL\Dapper.GraphQL.csproj" />
</ItemGroup>
</Project>