1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

updates to support new master versioning

make sure game files are copied correctly in build output
This commit is contained in:
RaidMax
2020-01-11 20:32:27 -06:00
parent 9bd2640fd9
commit e5e0835f8a
14 changed files with 253 additions and 49 deletions

View File

@ -0,0 +1,26 @@
using Newtonsoft.Json;
using System;
namespace SharedLibraryCore.Helpers
{
/// <summary>
/// JSON converter for the build number
/// </summary>
public class BuildNumberJsonConverter : JsonConverter
{
public override bool CanConvert(Type objectType)
{
return objectType == typeof(string);
}
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
{
return BuildNumber.Parse(reader.Value.ToString());
}
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
{
writer.WriteValue(value.ToString());
}
}
}