forked from davidfowl/TodoApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Todo.Web.Server.csproj
26 lines (22 loc) · 1.21 KB
/
Todo.Web.Server.csproj
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>net7.0</TargetFramework>
<ContainerImageName>todo-web-server</ContainerImageName>
<ContainerImageTag>latest</ContainerImageTag>
<UserSecretsId>c3677e8f-17d8-492d-8844-36ade85166e5</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AspNet.Security.OAuth.GitHub" Version="7.0.2" />
<PackageReference Include="Auth0.AspNetCore.Authentication" Version="1.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="7.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="7.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="7.0.5" />
<PackageReference Include="Microsoft.NET.Build.Containers" Version="0.4.0" />
<PackageReference Include="Yarp.ReverseProxy" Version="2.0.0" />
<PackageReference Include="Microsoft.Tye.Extensions.Configuration" Version="0.10.0-alpha.21420.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Client\Todo.Web.Client.csproj" />
<ProjectReference Include="..\Shared\Todo.Web.Shared.csproj" />
</ItemGroup>
</Project>