cs11dotnet7/vscode/Chapter10/Ch10Ex02DataSerialization/Ch10Ex02DataSerialization.csproj

25 lines
575 B
XML
Raw Normal View History

2022-03-05 16:45:55 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Console" Static="true" />
</ItemGroup>
2022-03-05 16:45:55 +01:00
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0" />
</ItemGroup>
2022-03-05 16:45:55 +01:00
<ItemGroup>
<None Update="Northwind.db">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
2022-03-05 16:45:55 +01:00
</Project>