forked from ClearMeasure/AliaSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAliaSQL.Core.csproj
More file actions
31 lines (31 loc) · 1.04 KB
/
Copy pathAliaSQL.Core.csproj
File metadata and controls
31 lines (31 loc) · 1.04 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<OutputType>Library</OutputType>
<PublishUrl>publish\</PublishUrl>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="SqlFiles\CreateSchema.sql" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="SqlFiles\DropConnections.sql" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="SqlFiles\VersionDatabase.sql" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="SqlFiles\CreateTestDataSchema.sql" />
</ItemGroup>
<PropertyGroup />
<ItemGroup>
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
</ItemGroup>
<ItemGroup>
<Compile Remove="InfrastructureDependencyRegistrar.cs" />
<Compile Remove="InfrastructureDependencyRegistry.cs" />
<Compile Remove="ServiceLocator.cs" />
</ItemGroup>
</Project>