29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ParadoxSaveParser.Lib\ParadoxSaveParser.Lib.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DTLib.Web" Version="1.4.0" />
|
|
<!-- <PackageReference Include="Google.Protobuf" Version="3.31.0" />-->
|
|
<PackageReference Include="sqlite-net-pcl" Version="1.9.172" />
|
|
</ItemGroup>
|
|
|
|
<!-- <ItemGroup>-->
|
|
<!-- <Compile Include="obj\Protobuf\*.g.cs" />-->
|
|
<!-- </ItemGroup>-->
|
|
|
|
<!-- <Target Name="PreBuild" BeforeTargets="PreBuildEvent">-->
|
|
<!-- <Exec Command="sh -c "mkdir -p obj/Protobuf && protoc Protobuf/*.proto --csharp_out=obj/Protobuf --csharp_opt=file_extension=.g.cs"" />-->
|
|
<!-- </Target>-->
|
|
</Project>
|