diff --git a/.github/workflows/hello.yml b/.github/workflows/hello.yml new file mode 100644 index 0000000..dd5658f --- /dev/null +++ b/.github/workflows/hello.yml @@ -0,0 +1,24 @@ +name: Hello GitHub Actions + +on: + workflow_dispatch: + +jobs: + hello: + runs-on: ubuntu-latest + + steps: + - name: Say hello + run: echo "Hello from GitHub Actions!" + + - name: Show operating system + run: uname -a + + - name: Show current directory + run: pwd + + - name: List files + run: ls -la + + - name: Show current time + run: date \ No newline at end of file diff --git a/.gitignore b/.gitignore index 822b7bc..77b5ece 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,10 @@ # Folders to ignore download/* media/* -log[s]/* +**/[Ll]og[s]/* +**/[Bb]in/ +**/[Oo]bj + !.gitkeep # Files to ignore ('**/' means, in all subdirectories) diff --git a/csharp/SmartThings/Program.cs b/csharp/SmartThings/Program.cs index 467bc42..1d23282 100644 --- a/csharp/SmartThings/Program.cs +++ b/csharp/SmartThings/Program.cs @@ -1,32 +1,32 @@ -using SmartThingsNet.Api; -using SmartThingsNet.Client; -using SmartThingsNet.Model; - -namespace SmartThings -{ - class SmartThings - { - static void Main() - { - string accesstoken = ""; // Fill your SmartThings access token here - var configuration = new Configuration(); - configuration.AccessToken = accesstoken; - var devices = new DevicesApi(configuration); - var locations = new LocationsApi(configuration); - var rooms = new RoomsApi(configuration); - var devicelist = devices.GetDevices(accesstoken).Items; - - Console.WriteLine("Locations:"); - Console.WriteLine("- " + String.Join(Environment.NewLine+"- ", locations.ListLocations(accesstoken).Items.Select(x => x.Name))); - Console.WriteLine(); - - Console.WriteLine("Rooms:"); - Console.WriteLine("- " + String.Join(Environment.NewLine+"- ", rooms.ListRooms(accesstoken, locations.ListLocations(accesstoken).Items.First().LocationId.ToString()).Items.Select(x => x.Name))); - Console.WriteLine(); - - Console.WriteLine("Devices:"); - Console.WriteLine("- " + String.Join(Environment.NewLine+"- ", devicelist.Select(x => $"{x.Label} :: {x.DeviceId}").ToList())); - Console.WriteLine(); - } - } -} +using SmartThingsNet.Api; +using SmartThingsNet.Client; +using SmartThingsNet.Model; + +namespace SmartThings +{ + class SmartThings + { + static void Main() + { + string accesstoken = ""; // Fill your SmartThings access token here + var configuration = new Configuration(); + configuration.AccessToken = accesstoken; + var devices = new DevicesApi(configuration); + var locations = new LocationsApi(configuration); + var rooms = new RoomsApi(configuration); + var devicelist = devices.GetDevices(accesstoken).Items; + + Console.WriteLine("Locations:"); + Console.WriteLine("- " + String.Join(Environment.NewLine+"- ", locations.ListLocations(accesstoken).Items.Select(x => x.Name))); + Console.WriteLine(); + + Console.WriteLine("Rooms:"); + Console.WriteLine("- " + String.Join(Environment.NewLine+"- ", rooms.ListRooms(accesstoken, locations.ListLocations(accesstoken).Items.First().LocationId.ToString()).Items.Select(x => x.Name))); + Console.WriteLine(); + + Console.WriteLine("Devices:"); + Console.WriteLine("- " + String.Join(Environment.NewLine+"- ", devicelist.Select(x => $"{x.Label} :: {x.DeviceId}").ToList())); + Console.WriteLine(); + } + } +} diff --git a/csharp/SmartThings/SmartThings.csproj b/csharp/SmartThings/SmartThings.csproj index f45f9cc..4a2404d 100644 --- a/csharp/SmartThings/SmartThings.csproj +++ b/csharp/SmartThings/SmartThings.csproj @@ -1,14 +1,14 @@ - - - - Exe - net6.0 - enable - enable - - - - - - - + + + + Exe + net6.0 + enable + enable + + + + + + + diff --git a/csharp/SmartThings/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/csharp/SmartThings/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index ed92695..0000000 --- a/csharp/SmartThings/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.AssemblyInfo.cs b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.AssemblyInfo.cs deleted file mode 100644 index 8248d61..0000000 --- a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("SmartThings")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d8360b1f53e4cc79d252b0e75f36156b855cb1c6")] -[assembly: System.Reflection.AssemblyProductAttribute("SmartThings")] -[assembly: System.Reflection.AssemblyTitleAttribute("SmartThings")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.AssemblyInfoInputs.cache b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.AssemblyInfoInputs.cache deleted file mode 100644 index 68f9e06..0000000 --- a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c46a64d651712fa4fbf60af2c0d765846d261e0896313faa2a00a74de94acf46 diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.GeneratedMSBuildEditorConfig.editorconfig b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 42a3c4c..0000000 --- a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = SmartThings -build_property.ProjectDir = C:\Users\ikincses\source\repos\devtools\csharp\SmartThings\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 6.0 -build_property.EnableCodeStyleSeverity = diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.GlobalUsings.g.cs b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.GlobalUsings.g.cs deleted file mode 100644 index 3bad85c..0000000 --- a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.assets.cache b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.assets.cache deleted file mode 100644 index 8e168f9..0000000 Binary files a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.assets.cache and /dev/null differ diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.csproj.AssemblyReference.cache b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.csproj.AssemblyReference.cache deleted file mode 100644 index cad92e4..0000000 Binary files a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.csproj.AssemblyReference.cache and /dev/null differ diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.csproj.CopyComplete b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.csproj.CoreCompileInputs.cache b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.csproj.CoreCompileInputs.cache deleted file mode 100644 index 7d0b8a8..0000000 --- a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -292844816067845a7acc33dd8903d6d2acf092c0 diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.csproj.FileListAbsolute.txt b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.csproj.FileListAbsolute.txt deleted file mode 100644 index c3f60c2..0000000 --- a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,21 +0,0 @@ -C:\Users\Imi\Downloads\SmartThings\bin\Debug\net6.0\SmartThings.exe -C:\Users\Imi\Downloads\SmartThings\bin\Debug\net6.0\SmartThings.deps.json -C:\Users\Imi\Downloads\SmartThings\bin\Debug\net6.0\SmartThings.runtimeconfig.json -C:\Users\Imi\Downloads\SmartThings\bin\Debug\net6.0\SmartThings.dll -C:\Users\Imi\Downloads\SmartThings\bin\Debug\net6.0\ref\SmartThings.dll -C:\Users\Imi\Downloads\SmartThings\bin\Debug\net6.0\SmartThings.pdb -C:\Users\Imi\Downloads\SmartThings\bin\Debug\net6.0\JsonSubTypes.dll -C:\Users\Imi\Downloads\SmartThings\bin\Debug\net6.0\Newtonsoft.Json.dll -C:\Users\Imi\Downloads\SmartThings\bin\Debug\net6.0\Polly.dll -C:\Users\Imi\Downloads\SmartThings\bin\Debug\net6.0\RestSharp.dll -C:\Users\Imi\Downloads\SmartThings\bin\Debug\net6.0\SmartThingsNet.dll -C:\Users\Imi\Downloads\SmartThings\obj\Debug\net6.0\SmartThings.csproj.AssemblyReference.cache -C:\Users\Imi\Downloads\SmartThings\obj\Debug\net6.0\SmartThings.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\Imi\Downloads\SmartThings\obj\Debug\net6.0\SmartThings.AssemblyInfoInputs.cache -C:\Users\Imi\Downloads\SmartThings\obj\Debug\net6.0\SmartThings.AssemblyInfo.cs -C:\Users\Imi\Downloads\SmartThings\obj\Debug\net6.0\SmartThings.csproj.CoreCompileInputs.cache -C:\Users\Imi\Downloads\SmartThings\obj\Debug\net6.0\SmartThings.csproj.CopyComplete -C:\Users\Imi\Downloads\SmartThings\obj\Debug\net6.0\SmartThings.dll -C:\Users\Imi\Downloads\SmartThings\obj\Debug\net6.0\ref\SmartThings.dll -C:\Users\Imi\Downloads\SmartThings\obj\Debug\net6.0\SmartThings.pdb -C:\Users\Imi\Downloads\SmartThings\obj\Debug\net6.0\SmartThings.genruntimeconfig.cache diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.dll b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.dll deleted file mode 100644 index 8a16924..0000000 Binary files a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.dll and /dev/null differ diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.genruntimeconfig.cache b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.genruntimeconfig.cache deleted file mode 100644 index 25cb287..0000000 --- a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -85be4d135fa791874eda73c0a20cae485cb75e84 diff --git a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.pdb b/csharp/SmartThings/obj/Debug/net6.0/SmartThings.pdb deleted file mode 100644 index 46a7b96..0000000 Binary files a/csharp/SmartThings/obj/Debug/net6.0/SmartThings.pdb and /dev/null differ diff --git a/csharp/SmartThings/obj/Debug/net6.0/apphost.exe b/csharp/SmartThings/obj/Debug/net6.0/apphost.exe deleted file mode 100644 index 0140989..0000000 Binary files a/csharp/SmartThings/obj/Debug/net6.0/apphost.exe and /dev/null differ diff --git a/csharp/SmartThings/obj/Debug/net6.0/ref/SmartThings.dll b/csharp/SmartThings/obj/Debug/net6.0/ref/SmartThings.dll deleted file mode 100644 index fa9ee8d..0000000 Binary files a/csharp/SmartThings/obj/Debug/net6.0/ref/SmartThings.dll and /dev/null differ diff --git a/csharp/SmartThings/obj/SmartThings.csproj.nuget.dgspec.json b/csharp/SmartThings/obj/SmartThings.csproj.nuget.dgspec.json deleted file mode 100644 index 2984584..0000000 --- a/csharp/SmartThings/obj/SmartThings.csproj.nuget.dgspec.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\ikincses\\source\\repos\\devtools\\csharp\\SmartThings\\SmartThings.csproj": {} - }, - "projects": { - "C:\\Users\\ikincses\\source\\repos\\devtools\\csharp\\SmartThings\\SmartThings.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\ikincses\\source\\repos\\devtools\\csharp\\SmartThings\\SmartThings.csproj", - "projectName": "SmartThings", - "projectPath": "C:\\Users\\ikincses\\source\\repos\\devtools\\csharp\\SmartThings\\SmartThings.csproj", - "packagesPath": "C:\\Users\\ikincses\\.nuget\\packages\\", - "outputPath": "C:\\Users\\ikincses\\source\\repos\\devtools\\csharp\\SmartThings\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\ikincses\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {}, - "https://git.iminet.hu/api/packages/imi/nuget/index.json": {}, - "https://nuget.pkg.github.com/iminet/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "SmartThingsNet": { - "target": "Package", - "version": "[0.7.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[6.0.36, 6.0.36]" - }, - { - "name": "Microsoft.NETCore.App.Host.win-x64", - "version": "[6.0.36, 6.0.36]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[6.0.36, 6.0.36]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[6.0.36, 6.0.36]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.102\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/csharp/SmartThings/obj/SmartThings.csproj.nuget.g.props b/csharp/SmartThings/obj/SmartThings.csproj.nuget.g.props deleted file mode 100644 index 4a8da54..0000000 --- a/csharp/SmartThings/obj/SmartThings.csproj.nuget.g.props +++ /dev/null @@ -1,15 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\ikincses\.nuget\packages\ - PackageReference - 7.0.0 - - - - - \ No newline at end of file diff --git a/csharp/SmartThings/obj/SmartThings.csproj.nuget.g.targets b/csharp/SmartThings/obj/SmartThings.csproj.nuget.g.targets deleted file mode 100644 index 35a7576..0000000 --- a/csharp/SmartThings/obj/SmartThings.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/csharp/SmartThings/obj/project.assets.json b/csharp/SmartThings/obj/project.assets.json deleted file mode 100644 index 25b6889..0000000 --- a/csharp/SmartThings/obj/project.assets.json +++ /dev/null @@ -1,377 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "JsonSubTypes/1.8.0": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "10.0.1" - }, - "compile": { - "lib/netstandard2.0/JsonSubTypes.dll": {} - }, - "runtime": { - "lib/netstandard2.0/JsonSubTypes.dll": {} - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "Polly/7.2.2": { - "type": "package", - "compile": { - "lib/netstandard2.0/Polly.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Polly.dll": { - "related": ".pdb;.xml" - } - } - }, - "RestSharp/106.15.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/RestSharp.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/RestSharp.dll": { - "related": ".xml" - } - } - }, - "SmartThingsNet/0.7.0": { - "type": "package", - "dependencies": { - "JsonSubTypes": "1.8.0", - "Newtonsoft.Json": "13.0.1", - "Polly": "7.2.2", - "RestSharp": "106.15.0", - "System.ComponentModel.Annotations": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/SmartThingsNet.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/SmartThingsNet.dll": { - "related": ".xml" - } - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } - } - } - } - }, - "libraries": { - "JsonSubTypes/1.8.0": { - "sha512": "pBChxyl9mt0F1s1giHlN6yQ9WWb5FljluCNhMnSb7sspPfPRPTrc0a0psdu2/FVb5nZu5bQN50OMMaSp8jm8xQ==", - "type": "package", - "path": "jsonsubtypes/1.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "jsonsubtypes.1.8.0.nupkg.sha512", - "jsonsubtypes.nuspec", - "lib/net35/JsonSubTypes.dll", - "lib/net40/JsonSubTypes.dll", - "lib/net45/JsonSubTypes.dll", - "lib/net46/JsonSubTypes.dll", - "lib/net47/JsonSubTypes.dll", - "lib/netstandard1.3/JsonSubTypes.dll", - "lib/netstandard1.4/JsonSubTypes.dll", - "lib/netstandard1.5/JsonSubTypes.dll", - "lib/netstandard1.6/JsonSubTypes.dll", - "lib/netstandard2.0/JsonSubTypes.dll" - ] - }, - "Newtonsoft.Json/13.0.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "type": "package", - "path": "newtonsoft.json/13.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "Polly/7.2.2": { - "sha512": "E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", - "type": "package", - "path": "polly/7.2.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Polly.dll", - "lib/net461/Polly.pdb", - "lib/net461/Polly.xml", - "lib/net472/Polly.dll", - "lib/net472/Polly.pdb", - "lib/net472/Polly.xml", - "lib/netstandard1.1/Polly.dll", - "lib/netstandard1.1/Polly.pdb", - "lib/netstandard1.1/Polly.xml", - "lib/netstandard2.0/Polly.dll", - "lib/netstandard2.0/Polly.pdb", - "lib/netstandard2.0/Polly.xml", - "polly.7.2.2.nupkg.sha512", - "polly.nuspec" - ] - }, - "RestSharp/106.15.0": { - "sha512": "HM7ohR6AscxedNenrrl93DSZG6hvdnA7O+NHyCl/6ZKTfn8psQ9rRmUpcb9eWr+140vmfxoVemql0bUoeGEW3A==", - "type": "package", - "path": "restsharp/106.15.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net452/RestSharp.dll", - "lib/net452/RestSharp.xml", - "lib/netstandard2.0/RestSharp.dll", - "lib/netstandard2.0/RestSharp.xml", - "restsharp.106.15.0.nupkg.sha512", - "restsharp.nuspec", - "restsharp.png" - ] - }, - "SmartThingsNet/0.7.0": { - "sha512": "F99ZWavaXB7HFUdtahsViwqdrePII7hCNwgOtqM0FO66TmqON0mu/RHm0ztnC/VaUFWYzFXx3+HGhoTPXs6PGw==", - "type": "package", - "path": "smartthingsnet/0.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.1/SmartThingsNet.dll", - "lib/netstandard2.1/SmartThingsNet.xml", - "smartthingsnet.0.7.0.nupkg.sha512", - "smartthingsnet.nuspec" - ] - }, - "System.ComponentModel.Annotations/5.0.0": { - "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "type": "package", - "path": "system.componentmodel.annotations/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ComponentModel.Annotations.dll", - "lib/netcore50/System.ComponentModel.Annotations.dll", - "lib/netstandard1.4/System.ComponentModel.Annotations.dll", - "lib/netstandard2.0/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.xml", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ComponentModel.Annotations.dll", - "ref/net461/System.ComponentModel.Annotations.xml", - "ref/netcore50/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.xml", - "ref/netcore50/de/System.ComponentModel.Annotations.xml", - "ref/netcore50/es/System.ComponentModel.Annotations.xml", - "ref/netcore50/fr/System.ComponentModel.Annotations.xml", - "ref/netcore50/it/System.ComponentModel.Annotations.xml", - "ref/netcore50/ja/System.ComponentModel.Annotations.xml", - "ref/netcore50/ko/System.ComponentModel.Annotations.xml", - "ref/netcore50/ru/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/System.ComponentModel.Annotations.dll", - "ref/netstandard1.1/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/System.ComponentModel.Annotations.dll", - "ref/netstandard1.3/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/System.ComponentModel.Annotations.dll", - "ref/netstandard1.4/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard2.0/System.ComponentModel.Annotations.dll", - "ref/netstandard2.0/System.ComponentModel.Annotations.xml", - "ref/netstandard2.1/System.ComponentModel.Annotations.dll", - "ref/netstandard2.1/System.ComponentModel.Annotations.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.annotations.5.0.0.nupkg.sha512", - "system.componentmodel.annotations.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "SmartThingsNet >= 0.7.0" - ] - }, - "packageFolders": { - "C:\\Users\\ikincses\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\ikincses\\source\\repos\\devtools\\csharp\\SmartThings\\SmartThings.csproj", - "projectName": "SmartThings", - "projectPath": "C:\\Users\\ikincses\\source\\repos\\devtools\\csharp\\SmartThings\\SmartThings.csproj", - "packagesPath": "C:\\Users\\ikincses\\.nuget\\packages\\", - "outputPath": "C:\\Users\\ikincses\\source\\repos\\devtools\\csharp\\SmartThings\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\ikincses\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {}, - "https://git.iminet.hu/api/packages/imi/nuget/index.json": {}, - "https://nuget.pkg.github.com/iminet/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "10.0.100" - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "SmartThingsNet": { - "target": "Package", - "version": "[0.7.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[6.0.36, 6.0.36]" - }, - { - "name": "Microsoft.NETCore.App.Host.win-x64", - "version": "[6.0.36, 6.0.36]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[6.0.36, 6.0.36]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[6.0.36, 6.0.36]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.102\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/csharp/SmartThings/obj/project.nuget.cache b/csharp/SmartThings/obj/project.nuget.cache deleted file mode 100644 index f9522f5..0000000 --- a/csharp/SmartThings/obj/project.nuget.cache +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "RZyvuUijdfU=", - "success": true, - "projectFilePath": "C:\\Users\\ikincses\\source\\repos\\devtools\\csharp\\SmartThings\\SmartThings.csproj", - "expectedPackageFiles": [ - "C:\\Users\\ikincses\\.nuget\\packages\\jsonsubtypes\\1.8.0\\jsonsubtypes.1.8.0.nupkg.sha512", - "C:\\Users\\ikincses\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\ikincses\\.nuget\\packages\\polly\\7.2.2\\polly.7.2.2.nupkg.sha512", - "C:\\Users\\ikincses\\.nuget\\packages\\restsharp\\106.15.0\\restsharp.106.15.0.nupkg.sha512", - "C:\\Users\\ikincses\\.nuget\\packages\\smartthingsnet\\0.7.0\\smartthingsnet.0.7.0.nupkg.sha512", - "C:\\Users\\ikincses\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", - "C:\\Users\\ikincses\\.nuget\\packages\\microsoft.netcore.app.ref\\6.0.36\\microsoft.netcore.app.ref.6.0.36.nupkg.sha512", - "C:\\Users\\ikincses\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\6.0.36\\microsoft.windowsdesktop.app.ref.6.0.36.nupkg.sha512", - "C:\\Users\\ikincses\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\6.0.36\\microsoft.aspnetcore.app.ref.6.0.36.nupkg.sha512", - "C:\\Users\\ikincses\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\6.0.36\\microsoft.netcore.app.host.win-x64.6.0.36.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file