fix: use correct manifest url

This commit is contained in:
Anna 2020-12-27 11:33:33 -05:00
parent 59be5f2054
commit 034c3d84af
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0
2 changed files with 5 additions and 10 deletions

View File

@ -16,9 +16,9 @@ namespace NoSoliciting.Ml {
private const string ManifestName = "manifest.yaml";
private const string ModelName = "model.zip";
#if DEBUG
private const string Url = "https://annaclemens.io/assets/nosol/ml/manifest.yaml";
#else
private const string Url = "http://localhost:8000/manifest.yaml";
#else
private const string Url = "https://annaclemens.io/assets/nosol/ml/manifest.yaml";
#endif
public uint Version { get; }

View File

@ -3,14 +3,14 @@
<PropertyGroup>
<LangVersion>8</LangVersion>
<Nullable>enable</Nullable>
<AssemblyVersion>1.5.0</AssemblyVersion>
<FileVersion>1.5.0</FileVersion>
<AssemblyVersion>1.5.1</AssemblyVersion>
<FileVersion>1.5.1</FileVersion>
<TargetFramework>net48</TargetFramework>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dalamud, Version=5.2.1.0, Culture=neutral, PublicKeyToken=null">
<Reference Include="Dalamud, Version=5.2.1.1, Culture=neutral, PublicKeyToken=null">
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\Dalamud.dll</HintPath>
<Private>False</Private>
</Reference>
@ -52,11 +52,6 @@
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="NoSoliciting.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NoSoliciting.CursedWorkaround\NoSoliciting.CursedWorkaround.csproj" />
</ItemGroup>