Skip to content
Snippets Groups Projects
Commit 062c4582 authored by Daniel Andrášik's avatar Daniel Andrášik
Browse files

Project clean up

parent 2fcf2bca
No related branches found
No related tags found
No related merge requests found
......@@ -36,14 +36,16 @@ namespace SDK
return await response.Content.ReadAsByteArrayAsync();
}
public async Task<string> GetUnityLastVersion(string platform) {
public async Task<string> GetUnityLastVersion(string platform)
{
string subUrl = Address.UrlCombine(Address.UtilsUnityLastVersion, platform);
var response = await GetRequest<string>(subUrl);
return response;
}
public async Task<FileInfoContract> GetUnityBundleInfo(string bundleName) {
public async Task<FileInfoContract> GetUnityBundleInfo(string bundleName)
{
string subUrl = Address.UrlCombine(Address.UtilsUnityBundleInfo, bundleName);
var response = await GetRequest<FileInfoContract>(subUrl);
......
using Core.Enum;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SDK.Contracts.Data
{
public class DynamicDeviceShortContract
{
public int SectorId {get; set;}
public int SectorId { get; set; }
public DynamicDeviceShort[] Locations { get; set; }
}
......
using System.Runtime.Serialization;
namespace SDK.Contracts.Data
namespace SDK.Contracts.Data
{
public class FileInfoContract
{
......
......@@ -196,7 +196,7 @@ namespace Main
DataType = "Int32",
Unit = "unit"
};
var sensorDataContracts = new[] {data1, data2, data3 };
var sensorDataContracts = new[] { data1, data2, data3 };
SensorContract sensor = new SensorContract
{
......
......@@ -7,9 +7,6 @@ using SDK.Enum;
using SDK.Exceptions;
using SDK.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json;
using System.Threading.Tasks;
using WireMock.RequestBuilders;
......

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31129.286
# Visual Studio Version 17
VisualStudioVersion = 17.3.32825.248
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SDK", "SDK\SDK.csproj", "{A0DA797F-1C3B-4379-90FA-5C9CB8B5E858}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Main", "Main\Main.csproj", "{8AB48636-5868-4A43-9B6A-7BAAB085FE77}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test", "Test\Test\Test.csproj", "{488CE946-CD3E-49E5-A40D-AA2FD5A2744B}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Test", "Test\Test\Test.csproj", "{488CE946-CD3E-49E5-A40D-AA2FD5A2744B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
......@@ -19,10 +17,6 @@ Global
{A0DA797F-1C3B-4379-90FA-5C9CB8B5E858}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A0DA797F-1C3B-4379-90FA-5C9CB8B5E858}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A0DA797F-1C3B-4379-90FA-5C9CB8B5E858}.Release|Any CPU.Build.0 = Release|Any CPU
{8AB48636-5868-4A43-9B6A-7BAAB085FE77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8AB48636-5868-4A43-9B6A-7BAAB085FE77}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8AB48636-5868-4A43-9B6A-7BAAB085FE77}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8AB48636-5868-4A43-9B6A-7BAAB085FE77}.Release|Any CPU.Build.0 = Release|Any CPU
{488CE946-CD3E-49E5-A40D-AA2FD5A2744B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{488CE946-CD3E-49E5-A40D-AA2FD5A2744B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{488CE946-CD3E-49E5-A40D-AA2FD5A2744B}.Release|Any CPU.ActiveCfg = Release|Any CPU
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment