cs11dotnet7/vs4win/PracticalApps/Northwind.Common.DataContext.SqlServer/Northwind.Common.DataContext.SqlServer.csproj

24 lines
581 B
XML
Raw Normal View History

2022-03-13 17:17:01 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2022-11-08 17:31:25 +01:00
<ItemGroup>
<Using Include="System.Console" Static="true" />
</ItemGroup>
2022-03-13 17:17:01 +01:00
2022-11-08 17:31:25 +01:00
<ItemGroup>
<PackageReference
Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" />
</ItemGroup>
2022-03-13 17:17:01 +01:00
2022-11-08 17:31:25 +01:00
<ItemGroup>
<ProjectReference Include=
2022-03-13 17:17:01 +01:00
"..\Northwind.Common.EntityModels.SqlServer\Northwind.Common.EntityModels.SqlServer.csproj" />
2022-11-08 17:31:25 +01:00
</ItemGroup>
2022-03-13 17:17:01 +01:00
</Project>