-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathASimmo.csproj
More file actions
26 lines (21 loc) · 949 Bytes
/
ASimmo.csproj
File metadata and controls
26 lines (21 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<UserSecretsId>aspnet-ASimmo-3CC518F6-7FAD-46F7-BA07-2566A1BA82E0</UserSecretsId>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.5" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.5" />
</ItemGroup>
<ItemGroup>
<Folder Include="Data\Migrations\" />
<Folder Include="wwwroot\img\projets\" />
</ItemGroup>
<ItemGroup>
<Compile Remove="ASimmo.Tests/*.cs" />
<Compile Remove="ASimmo.Tests/**/*.cs" />
</ItemGroup>
</Project>