18 lines
562 B
XML
18 lines
562 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<StartupObject>ALttPRandomizer.Program</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Azure.WebPubSub.AspNetCore" Version="1.4.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
|
|
<PackageReference Include="System.Text.Json" Version="9.0.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|