-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathArrowgene.Ddon.Database.csproj
More file actions
46 lines (39 loc) · 1.75 KB
/
Copy pathArrowgene.Ddon.Database.csproj
File metadata and controls
46 lines (39 loc) · 1.75 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>net6.0</TargetFramework>
<RootNamespace>Arrowgene.Ddon.Database</RootNamespace>
<Title>Dragons Dogma Online - Database</Title>
<Company>DDON Team</Company>
<Product>Ddon.Database</Product>
<Version>$(Version)</Version>
<Copyright>Copyright © 2019-2022 DDON Team</Copyright>
<LangVersion>10</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
</PropertyGroup>
<Import Project="./../SetSourceRevision.targets" />
<ItemGroup>
<PackageReference Include="Arrowgene.Logging" Version="1.2.1" />
<PackageReference Include="System.Data.SQLite" Version="1.0.115.5" />
<PackageReference Include="Npgsql" Version="7.0.6" />
<PackageReference Include="MySqlConnector" Version="2.2.7" />
</ItemGroup>
<ItemGroup>
<ContentWithTargetPath Include="Files\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>Files\%(RecursiveDir)%(Filename)%(Extension)</TargetPath>
</ContentWithTargetPath>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Arrowgene.Ddon.Shared\Arrowgene.Ddon.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Files\Database\Script\migration_quest_variant_refactor.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>