-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95ffe00
commit b879e06
Showing
82 changed files
with
705 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file added
BIN
+4.76 KB
C# Classes/.vs/C# Classes/FileContentIndex/1f7a461e-0f98-4d0f-ae7d-f87ab46e70ff.vsidx
Binary file not shown.
File renamed without changes.
Binary file added
BIN
+7.11 KB
C# Classes/.vs/C# Classes/FileContentIndex/47791917-faeb-486c-9e96-d5fe395af534.vsidx
Binary file not shown.
Binary file removed
BIN
-1.67 KB
C# Classes/.vs/C# Classes/FileContentIndex/70497f7f-9cb9-4db7-a2c5-cd2c9c4d4cca.vsidx
Binary file not shown.
Binary file added
BIN
+5.54 KB
C# Classes/.vs/C# Classes/FileContentIndex/713c2194-e568-4908-8b15-af1bdd41ec5e.vsidx
Binary file not shown.
Binary file added
BIN
+2.51 KB
C# Classes/.vs/C# Classes/FileContentIndex/815f5a3c-a749-4675-8641-0b34892f06ec.vsidx
Binary file not shown.
Binary file removed
BIN
-1.93 KB
C# Classes/.vs/C# Classes/FileContentIndex/bd184bdb-d184-4335-b218-522b537c67c8.vsidx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+15.8 KB
(110%)
C# Classes/.vs/ProjectEvaluation/c# classes.metadata.v7.bin
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+6 KB
C# Classes/MetadataAttribute/bin/Release/netstandard2.1/MetadataAttribute.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
C# Classes/MetadataAttribute/bin/Release/netstandard2.1/MetadataAttribute.pdb
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...s/MetadataAttribute/obj/Release/netstandard2.1/MetadataAttribute.AssemblyInfoInputs.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
76cce4f4cb6364d891842835020ff75a9ef1d9d3437057ed3f06ea4009d36c0f | ||
190ac49c64636da9455cb6afdef60f866c3d40eae67ac34624aa75a34e87c346 |
Binary file modified
BIN
+0 Bytes
(100%)
C# Classes/MetadataAttribute/obj/Release/netstandard2.1/MetadataAttribute.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
C# Classes/MetadataAttribute/obj/Release/netstandard2.1/MetadataAttribute.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
C# Classes/MetadataAttribute/obj/Release/netstandard2.1/MetadataAttribute.sourcelink.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"documents":{"R:\\Development\\NinjaOne\\*":"https://dev.azure.com/MSPsUK/NinjaOne/_apis/git/repositories/NinjaOne/items?api-version=1.0&versionType=commit&version=aa5e0d4c1ca950d1efb0f4903c92e134eb4556df&path=/*"}} | ||
{"documents":{"R:\\Development\\NinjaOne\\*":"https://dev.azure.com/MSPsUK/NinjaOne/_apis/git/repositories/NinjaOne/items?api-version=1.0&versionType=commit&version=95ffe00f92432edd5afa99b995d6e9e3e2a3a7de&path=/*"}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using System.Management.Automation; | ||
|
||
class ValidateNodeRoleId : ValidateEnumeratedArgumentsAttribute { | ||
protected override void ValidateElement(object element) { | ||
if (element is null) { | ||
throw new ValidationMetadataException("Element is null."); | ||
} | ||
if (((string)element != "auto") && !(element is int)) { | ||
throw new ValidationMetadataException("Element is not 'auto' or an integer."); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<Target Name="Copy DLLs" AfterTargets="Build"> | ||
<Message Text="Executing Copy DLLs" Importance="High" /> | ||
<Copy SourceFiles="$(TargetDir)$(ProjectName).dll" | ||
DestinationFolder="$(SolutionDir)\..\Source\Binaries" /> | ||
<Message Text="Finished Copy DLLs" Importance="High" /> | ||
</Target> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="PowerShellStandard.Library" Version="5.1.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
42 changes: 42 additions & 0 deletions
42
C# Classes/ValidateNodeRoleId/bin/Release/netstandard2.1/ValidateNodeRoleId.deps.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"runtimeTarget": { | ||
"name": ".NETStandard,Version=v2.1/", | ||
"signature": "" | ||
}, | ||
"compilationOptions": {}, | ||
"targets": { | ||
".NETStandard,Version=v2.1": {}, | ||
".NETStandard,Version=v2.1/": { | ||
"ValidateNodeRoleId/1.0.0": { | ||
"dependencies": { | ||
"PowerShellStandard.Library": "5.1.1" | ||
}, | ||
"runtime": { | ||
"ValidateNodeRoleId.dll": {} | ||
} | ||
}, | ||
"PowerShellStandard.Library/5.1.1": { | ||
"runtime": { | ||
"lib/netstandard2.0/System.Management.Automation.dll": { | ||
"assemblyVersion": "3.0.0.0", | ||
"fileVersion": "5.1.1.0" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"libraries": { | ||
"ValidateNodeRoleId/1.0.0": { | ||
"type": "project", | ||
"serviceable": false, | ||
"sha512": "" | ||
}, | ||
"PowerShellStandard.Library/5.1.1": { | ||
"type": "package", | ||
"serviceable": true, | ||
"sha512": "sha512-e31xJjG+Kjbv6YF3Yq6D4Dl3or8v7LrNF41k3CXrWozW6hR1zcOe5KYuZJaGSiAgLnwP8wcW+I3+IWEzMPZKXQ==", | ||
"path": "powershellstandard.library/5.1.1", | ||
"hashPath": "powershellstandard.library.5.1.1.nupkg.sha512" | ||
} | ||
} | ||
} |
Binary file added
BIN
+5 KB
C# Classes/ValidateNodeRoleId/bin/Release/netstandard2.1/ValidateNodeRoleId.dll
Binary file not shown.
Binary file added
BIN
+8.13 KB
C# Classes/ValidateNodeRoleId/bin/Release/netstandard2.1/ValidateNodeRoleId.pdb
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
...dateNodeRoleId/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// <autogenerated /> | ||
using System; | ||
using System.Reflection; | ||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] |
23 changes: 23 additions & 0 deletions
23
C# Classes/ValidateNodeRoleId/obj/Release/netstandard2.1/ValidateNodeRoleId.AssemblyInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by a tool. | ||
// Runtime Version:4.0.30319.42000 | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost if | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
|
||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: System.Reflection.AssemblyCompanyAttribute("ValidateNodeRoleId")] | ||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | ||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+95ffe00f92432edd5afa99b995d6e9e3e2a3a7de")] | ||
[assembly: System.Reflection.AssemblyProductAttribute("ValidateNodeRoleId")] | ||
[assembly: System.Reflection.AssemblyTitleAttribute("ValidateNodeRoleId")] | ||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | ||
|
||
// Generated by the MSBuild WriteCodeFragment class. | ||
|
1 change: 1 addition & 0 deletions
1
...ValidateNodeRoleId/obj/Release/netstandard2.1/ValidateNodeRoleId.AssemblyInfoInputs.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
d528d1bca552f80e0c86d032a5c6f38ab964bd941cf87415bd1373c1e1c44266 |
5 changes: 5 additions & 0 deletions
5
...d/obj/Release/netstandard2.1/ValidateNodeRoleId.GeneratedMSBuildEditorConfig.editorconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
is_global = true | ||
build_property.RootNamespace = ValidateNodeRoleId | ||
build_property.ProjectDir = R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\ | ||
build_property.EnableComHosting = | ||
build_property.EnableGeneratedComInterfaceComImportInterop = |
Binary file added
BIN
+955 Bytes
C# Classes/ValidateNodeRoleId/obj/Release/netstandard2.1/ValidateNodeRoleId.assets.cache
Binary file not shown.
Binary file added
BIN
+644 Bytes
...teNodeRoleId/obj/Release/netstandard2.1/ValidateNodeRoleId.csproj.AssemblyReference.cache
Binary file not shown.
1 change: 1 addition & 0 deletions
1
...teNodeRoleId/obj/Release/netstandard2.1/ValidateNodeRoleId.csproj.CoreCompileInputs.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6bafe4d7a034585a5ca0eff67dbf2d23de12cc241f97fc0db6ebfb005a7bf248 |
11 changes: 11 additions & 0 deletions
11
...idateNodeRoleId/obj/Release/netstandard2.1/ValidateNodeRoleId.csproj.FileListAbsolute.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\obj\Release\netstandard2.1\ValidateNodeRoleId.csproj.AssemblyReference.cache | ||
R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\obj\Release\netstandard2.1\ValidateNodeRoleId.GeneratedMSBuildEditorConfig.editorconfig | ||
R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\obj\Release\netstandard2.1\ValidateNodeRoleId.AssemblyInfoInputs.cache | ||
R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\obj\Release\netstandard2.1\ValidateNodeRoleId.AssemblyInfo.cs | ||
R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\obj\Release\netstandard2.1\ValidateNodeRoleId.csproj.CoreCompileInputs.cache | ||
R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\obj\Release\netstandard2.1\ValidateNodeRoleId.sourcelink.json | ||
R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\bin\Release\netstandard2.1\ValidateNodeRoleId.deps.json | ||
R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\bin\Release\netstandard2.1\ValidateNodeRoleId.dll | ||
R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\bin\Release\netstandard2.1\ValidateNodeRoleId.pdb | ||
R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\obj\Release\netstandard2.1\ValidateNodeRoleId.dll | ||
R:\Development\NinjaOne\C# Classes\ValidateNodeRoleId\obj\Release\netstandard2.1\ValidateNodeRoleId.pdb |
Binary file added
BIN
+5 KB
C# Classes/ValidateNodeRoleId/obj/Release/netstandard2.1/ValidateNodeRoleId.dll
Binary file not shown.
Binary file added
BIN
+8.13 KB
C# Classes/ValidateNodeRoleId/obj/Release/netstandard2.1/ValidateNodeRoleId.pdb
Binary file not shown.
1 change: 1 addition & 0 deletions
1
C# Classes/ValidateNodeRoleId/obj/Release/netstandard2.1/ValidateNodeRoleId.sourcelink.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"documents":{"R:\\Development\\NinjaOne\\*":"https://dev.azure.com/MSPsUK/NinjaOne/_apis/git/repositories/NinjaOne/items?api-version=1.0&versionType=commit&version=95ffe00f92432edd5afa99b995d6e9e3e2a3a7de&path=/*"}} |
69 changes: 69 additions & 0 deletions
69
C# Classes/ValidateNodeRoleId/obj/ValidateNodeRoleId.csproj.nuget.dgspec.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
"format": 1, | ||
"restore": { | ||
"R:\\Development\\NinjaOne\\C# Classes\\ValidateNodeRoleId\\ValidateNodeRoleId.csproj": {} | ||
}, | ||
"projects": { | ||
"R:\\Development\\NinjaOne\\C# Classes\\ValidateNodeRoleId\\ValidateNodeRoleId.csproj": { | ||
"version": "1.0.0", | ||
"restore": { | ||
"projectUniqueName": "R:\\Development\\NinjaOne\\C# Classes\\ValidateNodeRoleId\\ValidateNodeRoleId.csproj", | ||
"projectName": "ValidateNodeRoleId", | ||
"projectPath": "R:\\Development\\NinjaOne\\C# Classes\\ValidateNodeRoleId\\ValidateNodeRoleId.csproj", | ||
"packagesPath": "C:\\Users\\MichaelO'Toole\\.nuget\\packages\\", | ||
"outputPath": "R:\\Development\\NinjaOne\\C# Classes\\ValidateNodeRoleId\\obj\\", | ||
"projectStyle": "PackageReference", | ||
"configFilePaths": [ | ||
"C:\\Users\\MichaelO'Toole\\AppData\\Roaming\\NuGet\\NuGet.Config", | ||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | ||
], | ||
"originalTargetFrameworks": [ | ||
"netstandard2.1" | ||
], | ||
"sources": { | ||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, | ||
"https://api.nuget.org/v3/index.json": {} | ||
}, | ||
"frameworks": { | ||
"netstandard2.1": { | ||
"targetAlias": "netstandard2.1", | ||
"projectReferences": {} | ||
} | ||
}, | ||
"warningProperties": { | ||
"warnAsError": [ | ||
"NU1605" | ||
] | ||
} | ||
}, | ||
"frameworks": { | ||
"netstandard2.1": { | ||
"targetAlias": "netstandard2.1", | ||
"dependencies": { | ||
"PowerShellStandard.Library": { | ||
"target": "Package", | ||
"version": "[5.1.1, )" | ||
} | ||
}, | ||
"imports": [ | ||
"net461", | ||
"net462", | ||
"net47", | ||
"net471", | ||
"net472", | ||
"net48", | ||
"net481" | ||
], | ||
"assetTargetFallback": true, | ||
"warn": true, | ||
"frameworkReferences": { | ||
"NETStandard.Library": { | ||
"privateAssets": "all" | ||
} | ||
}, | ||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101\\RuntimeIdentifierGraph.json" | ||
} | ||
} | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
C# Classes/ValidateNodeRoleId/obj/ValidateNodeRoleId.csproj.nuget.g.props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="no"?> | ||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | ||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> | ||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> | ||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> | ||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> | ||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\MichaelO'Toole\.nuget\packages\</NuGetPackageFolders> | ||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> | ||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.8.0</NuGetToolVersion> | ||
</PropertyGroup> | ||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | ||
<SourceRoot Include="C:\Users\MichaelO'Toole\.nuget\packages\" /> | ||
</ItemGroup> | ||
</Project> |
2 changes: 2 additions & 0 deletions
2
C# Classes/ValidateNodeRoleId/obj/ValidateNodeRoleId.csproj.nuget.g.targets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="no"?> | ||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" /> |
Oops, something went wrong.