Removed magic strings from FirelanceMgr

- Renamed CSProj for both Gsm and Firelance.
- Made namespace names consistent.
This commit is contained in:
2020-07-05 14:46:53 +01:00
parent b6ce28a121
commit 21971e82c1
18 changed files with 86 additions and 54 deletions
+23
View File
@@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.35" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="3.1.5" />
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="3.1.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FireLance\FirelanceMgr.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="games.db">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>