-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReRoboRecords.csproj
More file actions
61 lines (54 loc) · 3.02 KB
/
ReRoboRecords.csproj
File metadata and controls
61 lines (54 loc) · 3.02 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PublishProfile>DefaultContainer</PublishProfile>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<ContainerRepository>roborecords</ContainerRepository>
<ContainerImageTag>latest</ContainerImageTag>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="12.0.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0-rc.2" />
<PackageReference Include="Microsoft.NET.Build.Containers" Version="8.0.100" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="Areas\Account\Views\Account\Login.cshtml" />
<AdditionalFiles Include="Areas\Account\Views\Shared\_ValidationScriptsPartial.cshtml" />
<AdditionalFiles Include="Areas\Account\Views\_ViewImports.cshtml" />
<AdditionalFiles Include="Areas\Account\Views\_ViewStart.cshtml" />
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="Areas\Identity\Pages\Account\Login.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Identity\Pages\Account\Logout.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Identity\Pages\Account\Register.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Identity\Pages\Account\_ViewImports.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Identity\Pages\_ValidationScriptsPartial.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Identity\Pages\_ViewStart.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Identity\Views\Home\Login.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Identity\Views\Shared\_ValidationScriptsPartial.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Identity\Views\_ViewImports.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Identity\Views\_ViewStart.cshtml" />
<_ContentIncludedByDefault Remove="wwwroot\css\site.css" />
<_ContentIncludedByDefault Remove="wwwroot\css\site.css.map" />
</ItemGroup>
<ItemGroup>
<Folder Include="Areas\Games\Services\" />
<Folder Include="Enums\" />
<Folder Include="Migrations\" />
<Folder Include="wwwroot\uploads\" />
</ItemGroup>
<ItemGroup>
<Content Remove="package-lock.json" />
</ItemGroup>
</Project>