Fix the schema

This commit is contained in:
Timothy Baldridge 2022-02-10 20:38:27 -07:00
parent 5e1e0ec527
commit 9288d05c2b
2 changed files with 22 additions and 1 deletions

View File

@ -44,7 +44,7 @@ public class ListCreationClubContent : IVerb
Console.WriteLine($"Game: {game}");
Console.WriteLine($"Name: {content.Name}");
Console.WriteLine($"Download Size: {content.DepotSize.ToFileSizeString()}");
Console.WriteLine($"Uri: bethesda://{game}/{content.ContentId}");
Console.WriteLine($"Uri: bethesda://{game}/cc/{content.ContentId}");
Console.WriteLine("-----------------------------------");
}

View File

@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.Extensions.Logging.Abstractions, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60">
<HintPath>..\..\..\Program Files\dotnet\shared\Microsoft.AspNetCore.App\6.0.1\Microsoft.Extensions.Logging.Abstractions.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Wabbajack.DTOs\Wabbajack.DTOs.csproj" />
<ProjectReference Include="..\Wabbajack.Networking.Http.Interfaces\Wabbajack.Networking.Http.Interfaces.csproj" />
<ProjectReference Include="..\Wabbajack.Networking.Http\Wabbajack.Networking.Http.csproj" />
</ItemGroup>
</Project>