123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- </PropertyGroup>
-
- <ItemGroup>
- <Compile Remove="Config\MysqlConnectionFactory.cs" />
- <Compile Remove="Config\RepositoryDataDependencyInjectionStartup.cs" />
- <Compile Remove="Interfaces\IMysqlConnectionFactory.cs" />
- </ItemGroup>
-
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNet.Identity.EntityFramework" Version="2.2.3" />
- <PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
- <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.10" />
- <PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.10" />
- <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
- <PackageReference Include="MySql.Data.EntityFrameworkCore" Version="8.0.22" />
- <PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="5.0.0-alpha.2" />
- <PackageReference Include="System.Data.SqlClient" Version="4.8.3" />
- </ItemGroup>
-
- </Project>
|