mirror of
https://github.com/guilhermewerner/site-pi
synced 2025-06-16 05:44:20 +00:00
27 lines
934 B
C#
27 lines
934 B
C#
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
|
|
<UserSecretsId>f6de4d6c-6235-4312-b14b-3a3ed68e0fbd</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.App" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.6" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.3" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.2.0" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\uploads\" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JSONSchema="" /></VisualStudio></ProjectExtensions>
|
|
|
|
</Project>
|