You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<PublishDir>..\..\..\Binaries\DotNET\OidcToken\</PublishDir>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.2" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Shared\EpicGames.OIDC\EpicGames.OIDC.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|