c3stream/c3stream.csproj

44 lines
1.3 KiB
XML
Raw Permalink Normal View History

2020-12-28 06:10:48 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2022-11-17 03:46:35 +01:00
<TargetFramework>net70</TargetFramework>
<Configurations>Release;Debug</Configurations>
<Platforms>x64</Platforms>
2020-12-28 06:10:48 +01:00
</PropertyGroup>
<ItemGroup>
2023-01-24 21:38:10 +01:00
<PackageReference Include="linq2db" Version="3.6.0" />
2023-08-19 12:27:14 +02:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2023-01-24 21:38:10 +01:00
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115" />
<PackageReference Include="System.Data.SQLite.Core.osx.arm64" Version="1.0.117" />
2020-12-28 06:10:48 +01:00
</ItemGroup>
<ItemGroup>
2023-01-24 21:38:10 +01:00
<_ContentIncludedByDefault Remove="data\database.json" />
<_ContentIncludedByDefault Remove="data\_c3stream.json" />
<_ContentIncludedByDefault Remove="data\33c3.json" />
<_ContentIncludedByDefault Remove="data\34c3.json" />
<_ContentIncludedByDefault Remove="data\35c3.json" />
2020-12-28 06:10:48 +01:00
</ItemGroup>
<ItemGroup>
2023-01-24 21:38:10 +01:00
<Compile Remove="data\**" />
2020-12-28 06:10:48 +01:00
</ItemGroup>
<ItemGroup>
2023-01-24 21:38:10 +01:00
<EmbeddedResource Remove="data\**" />
2020-12-28 06:10:48 +01:00
</ItemGroup>
<ItemGroup>
2023-01-24 21:38:10 +01:00
<None Remove="data\**" />
2020-12-28 06:10:48 +01:00
</ItemGroup>
<ItemGroup>
2023-01-24 21:38:10 +01:00
<Content Remove="data\**" />
2020-12-28 06:10:48 +01:00
</ItemGroup>
<ItemGroup>
2023-01-24 21:38:10 +01:00
<Folder Include="DataModels" />
</ItemGroup>
2020-12-28 06:10:48 +01:00
</Project>