Commit cfd1c4db by jiawei.su

add files

parent 17cefb5c
namespace Siger.Client.Comm
{
public class Constant
{
private readonly static string _key = "SigerSimpleLinsence";
public static string GetLinsenceKeyStr(int projectId,string strInfo)
{
var key= $"projectId{projectId}&{_key}&{strInfo}";
return MD5Helper.Get32MD5(key);
}
}
}
\ No newline at end of file
using System;
using System.Collections.Generic;
using System.Linq;
using System.Management;
using System.Text;
using System.Threading.Tasks;
namespace Siger.Client.Comm
{
public class MachineHelper
{
public static string GetDiskID()
{
try
{
string strDiskID = string.Empty;
ManagementClass mc = new ManagementClass("Win32_DiskDrive");
ManagementObjectCollection moc = mc.GetInstances();
foreach (ManagementObject mo in moc)
{
strDiskID = mo.Properties["Model"].Value.ToString();
}
moc = null;
mc = null;
return strDiskID;
}
catch
{
return "unknown";
}
}
/// <summary>
/// 获取本机MAC地址
/// </summary>
/// <returns>本机MAC地址</returns>
public static string GetMacAddress()
{
try
{
string strMac = string.Empty;
ManagementClass mc = new ManagementClass("Win32_NetworkAdapterConfiguration");
ManagementObjectCollection moc = mc.GetInstances();
foreach (ManagementObject mo in moc)
{
if ((bool)mo["IPEnabled"] == true)
{
strMac = mo["MacAddress"].ToString();
}
}
moc = null;
mc = null;
return strMac;
}
catch
{
return "unknown";
}
}
}
}
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="6.0.0" />
</ItemGroup>
</Project>
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Siger.Client.Comm/1.0.0": {
"dependencies": {
"System.Management": "6.0.0"
},
"runtime": {
"Siger.Client.Comm.dll": {}
}
},
"System.CodeDom/6.0.0": {
"runtime": {
"lib/net6.0/System.CodeDom.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
},
"System.Management/6.0.0": {
"dependencies": {
"System.CodeDom": "6.0.0"
},
"runtime": {
"lib/net6.0/System.Management.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
},
"runtimeTargets": {
"runtimes/win/lib/net6.0/System.Management.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
}
}
},
"libraries": {
"Siger.Client.Comm/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"System.CodeDom/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
"path": "system.codedom/6.0.0",
"hashPath": "system.codedom.6.0.0.nupkg.sha512"
},
"System.Management/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
"path": "system.management/6.0.0",
"hashPath": "system.management.6.0.0.nupkg.sha512"
}
}
}
\ No newline at end of file
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Siger.Client.Comm/1.0.0": {
"dependencies": {
"System.Management": "6.0.0"
},
"runtime": {
"Siger.Client.Comm.dll": {}
}
},
"System.CodeDom/6.0.0": {
"runtime": {
"lib/net6.0/System.CodeDom.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
},
"System.Management/6.0.0": {
"dependencies": {
"System.CodeDom": "6.0.0"
},
"runtime": {
"lib/net6.0/System.Management.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
},
"runtimeTargets": {
"runtimes/win/lib/net6.0/System.Management.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
}
}
},
"libraries": {
"Siger.Client.Comm/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"System.CodeDom/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
"path": "system.codedom/6.0.0",
"hashPath": "system.codedom.6.0.0.nupkg.sha512"
},
"System.Management/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
"path": "system.management/6.0.0",
"hashPath": "system.management.6.0.0.nupkg.sha512"
}
}
}
\ No newline at end of file
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Siger.Client.Comm")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Siger.Client.Comm")]
[assembly: System.Reflection.AssemblyTitleAttribute("Siger.Client.Comm")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// 由 MSBuild WriteCodeFragment 类生成。
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Siger.Client.Comm
build_property.ProjectDir = D:\Code\20220327\Voice\Siger.Client.Comm\
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
D:\Code\20220327\Siger.Client.Comm\bin\Debug\net6.0\Siger.Client.Comm.deps.json
D:\Code\20220327\Siger.Client.Comm\bin\Debug\net6.0\Siger.Client.Comm.dll
D:\Code\20220327\Siger.Client.Comm\bin\Debug\net6.0\Siger.Client.Comm.pdb
D:\Code\20220327\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.csproj.AssemblyReference.cache
D:\Code\20220327\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.GeneratedMSBuildEditorConfig.editorconfig
D:\Code\20220327\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.AssemblyInfoInputs.cache
D:\Code\20220327\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.AssemblyInfo.cs
D:\Code\20220327\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.csproj.CoreCompileInputs.cache
D:\Code\20220327\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.dll
D:\Code\20220327\Siger.Client.Comm\obj\Debug\net6.0\refint\Siger.Client.Comm.dll
D:\Code\20220327\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.pdb
D:\Code\20220327\Siger.Client.Comm\obj\Debug\net6.0\ref\Siger.Client.Comm.dll
D:\Code\20220327\Voice\Siger.Client.Comm\bin\Debug\net6.0\Siger.Client.Comm.deps.json
D:\Code\20220327\Voice\Siger.Client.Comm\bin\Debug\net6.0\Siger.Client.Comm.dll
D:\Code\20220327\Voice\Siger.Client.Comm\bin\Debug\net6.0\Siger.Client.Comm.pdb
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.csproj.AssemblyReference.cache
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.GeneratedMSBuildEditorConfig.editorconfig
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.AssemblyInfoInputs.cache
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.AssemblyInfo.cs
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.csproj.CoreCompileInputs.cache
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.dll
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Debug\net6.0\refint\Siger.Client.Comm.dll
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Debug\net6.0\Siger.Client.Comm.pdb
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Debug\net6.0\ref\Siger.Client.Comm.dll
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Siger.Client.Comm")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Siger.Client.Comm")]
[assembly: System.Reflection.AssemblyTitleAttribute("Siger.Client.Comm")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// 由 MSBuild WriteCodeFragment 类生成。
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Siger.Client.Comm
build_property.ProjectDir = D:\Code\20220327\Voice\Siger.Client.Comm\
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
D:\Code\20220327\Voice\Siger.Client.Comm\bin\Release\net6.0\Siger.Client.Comm.deps.json
D:\Code\20220327\Voice\Siger.Client.Comm\bin\Release\net6.0\Siger.Client.Comm.dll
D:\Code\20220327\Voice\Siger.Client.Comm\bin\Release\net6.0\Siger.Client.Comm.pdb
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Release\net6.0\Siger.Client.Comm.csproj.AssemblyReference.cache
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Release\net6.0\Siger.Client.Comm.GeneratedMSBuildEditorConfig.editorconfig
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Release\net6.0\Siger.Client.Comm.AssemblyInfoInputs.cache
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Release\net6.0\Siger.Client.Comm.AssemblyInfo.cs
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Release\net6.0\Siger.Client.Comm.csproj.CoreCompileInputs.cache
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Release\net6.0\Siger.Client.Comm.dll
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Release\net6.0\refint\Siger.Client.Comm.dll
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Release\net6.0\Siger.Client.Comm.pdb
D:\Code\20220327\Voice\Siger.Client.Comm\obj\Release\net6.0\ref\Siger.Client.Comm.dll
{
"format": 1,
"restore": {
"D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj": {}
},
"projects": {
"D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj",
"projectName": "Siger.Client.Comm",
"projectPath": "D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj",
"packagesPath": "C:\\Users\\jws\\.nuget\\packages\\",
"outputPath": "D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\jws\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"http://61.177.28.246:8081/repository/nuget-hosted/": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"System.Management": {
"target": "Package",
"version": "[6.0.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json"
}
}
}
}
}
\ No newline at end of file
<?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\jws\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\jws\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
\ No newline at end of file
{
"version": 3,
"targets": {
"net6.0": {
"System.CodeDom/6.0.0": {
"type": "package",
"compile": {
"lib/net6.0/System.CodeDom.dll": {}
},
"runtime": {
"lib/net6.0/System.CodeDom.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"System.Management/6.0.0": {
"type": "package",
"dependencies": {
"System.CodeDom": "6.0.0"
},
"compile": {
"lib/net6.0/System.Management.dll": {}
},
"runtime": {
"lib/net6.0/System.Management.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/net6.0/System.Management.dll": {
"assetType": "runtime",
"rid": "win"
}
}
}
}
},
"libraries": {
"System.CodeDom/6.0.0": {
"sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
"type": "package",
"path": "system.codedom/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.CodeDom.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.CodeDom.dll",
"lib/net461/System.CodeDom.xml",
"lib/net6.0/System.CodeDom.dll",
"lib/net6.0/System.CodeDom.xml",
"lib/netstandard2.0/System.CodeDom.dll",
"lib/netstandard2.0/System.CodeDom.xml",
"system.codedom.6.0.0.nupkg.sha512",
"system.codedom.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Management/6.0.0": {
"sha512": "sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
"type": "package",
"path": "system.management/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.Management.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/_._",
"lib/net6.0/System.Management.dll",
"lib/net6.0/System.Management.xml",
"lib/netcoreapp3.1/System.Management.dll",
"lib/netcoreapp3.1/System.Management.xml",
"lib/netstandard2.0/System.Management.dll",
"lib/netstandard2.0/System.Management.xml",
"runtimes/win/lib/net6.0/System.Management.dll",
"runtimes/win/lib/net6.0/System.Management.xml",
"runtimes/win/lib/netcoreapp3.1/System.Management.dll",
"runtimes/win/lib/netcoreapp3.1/System.Management.xml",
"system.management.6.0.0.nupkg.sha512",
"system.management.nuspec",
"useSharedDesignerContext.txt"
]
}
},
"projectFileDependencyGroups": {
"net6.0": [
"System.Management >= 6.0.0"
]
},
"packageFolders": {
"C:\\Users\\jws\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj",
"projectName": "Siger.Client.Comm",
"projectPath": "D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj",
"packagesPath": "C:\\Users\\jws\\.nuget\\packages\\",
"outputPath": "D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\jws\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"http://61.177.28.246:8081/repository/nuget-hosted/": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"System.Management": {
"target": "Package",
"version": "[6.0.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json"
}
}
}
}
\ No newline at end of file
{
"version": 2,
"dgSpecHash": "ymUt1AKbzMJDRGg3h5wVZFwSWCnHgsnFDY7jVIfbJQZaHv4gKC8Jk5YsiMsV4+g7YXULuEEDvWos2u65XzaN7A==",
"success": true,
"projectFilePath": "D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj",
"expectedPackageFiles": [
"C:\\Users\\jws\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512",
"C:\\Users\\jws\\.nuget\\packages\\system.management\\6.0.0\\system.management.6.0.0.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file
namespace Siger.Client.License
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.textBox3 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(192, 257);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(96, 34);
this.button1.TabIndex = 0;
this.button1.Text = "生成";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(23, 21);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(45, 17);
this.label1.TabIndex = 1;
this.label1.Text = "项目ID";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(23, 70);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(47, 17);
this.label2.TabIndex = 1;
this.label2.Text = "注册码:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(23, 157);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(47, 17);
this.label3.TabIndex = 2;
this.label3.Text = "license";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(91, 21);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(377, 23);
this.textBox1.TabIndex = 3;
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(91, 70);
this.textBox2.Multiline = true;
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(377, 62);
this.textBox2.TabIndex = 4;
//
// textBox3
//
this.textBox3.Location = new System.Drawing.Point(91, 157);
this.textBox3.Multiline = true;
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(377, 80);
this.textBox3.TabIndex = 4;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(476, 303);
this.Controls.Add(this.textBox3);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Button button1;
private Label label1;
private Label label2;
private Label label3;
private TextBox textBox1;
private TextBox textBox2;
private TextBox textBox3;
}
}
\ No newline at end of file
using Siger.Client.Comm;
namespace Siger.Client.License
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(textBox1.Text))
{
MessageBox.Show("ProjectID");
textBox1.SelectAll();
textBox1.Focus();
return;
}
if (string.IsNullOrEmpty(textBox2.Text))
{
MessageBox.Show("");
textBox2.SelectAll();
textBox2.Focus();
return;
}
int.TryParse(textBox1.Text, out int _projectId);
var sign = MD5Helper.Get32MD5(textBox2.Text);
textBox3.Text = sign;
}
}
}
\ No newline at end of file
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
\ No newline at end of file
namespace Siger.Client.License
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Siger.Client.Comm\Siger.Client.Comm.csproj" />
</ItemGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Update="Form1.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Siger.Client.License/1.0.0": {
"dependencies": {
"Siger.Client.Comm": "1.0.0"
},
"runtime": {
"Siger.Client.License.dll": {}
}
},
"System.CodeDom/6.0.0": {},
"System.Management/6.0.0": {
"dependencies": {
"System.CodeDom": "6.0.0"
},
"runtime": {
"lib/net6.0/System.Management.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
},
"runtimeTargets": {
"runtimes/win/lib/net6.0/System.Management.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
},
"Siger.Client.Comm/1.0.0": {
"dependencies": {
"System.Management": "6.0.0"
},
"runtime": {
"Siger.Client.Comm.dll": {}
}
}
}
},
"libraries": {
"Siger.Client.License/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"System.CodeDom/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
"path": "system.codedom/6.0.0",
"hashPath": "system.codedom.6.0.0.nupkg.sha512"
},
"System.Management/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
"path": "system.management/6.0.0",
"hashPath": "system.management.6.0.0.nupkg.sha512"
},
"Siger.Client.Comm/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}
\ No newline at end of file
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
]
}
}
\ No newline at end of file
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Siger.Client.License/1.0.0": {
"dependencies": {
"Siger.Client.Comm": "1.0.0"
},
"runtime": {
"Siger.Client.License.dll": {}
}
},
"System.CodeDom/6.0.0": {},
"System.Management/6.0.0": {
"dependencies": {
"System.CodeDom": "6.0.0"
},
"runtime": {
"lib/net6.0/System.Management.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
},
"runtimeTargets": {
"runtimes/win/lib/net6.0/System.Management.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
},
"Siger.Client.Comm/1.0.0": {
"dependencies": {
"System.Management": "6.0.0"
},
"runtime": {
"Siger.Client.Comm.dll": {}
}
}
}
},
"libraries": {
"Siger.Client.License/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"System.CodeDom/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
"path": "system.codedom/6.0.0",
"hashPath": "system.codedom.6.0.0.nupkg.sha512"
},
"System.Management/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
"path": "system.management/6.0.0",
"hashPath": "system.management.6.0.0.nupkg.sha512"
},
"Siger.Client.Comm/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}
\ No newline at end of file
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
]
}
}
\ No newline at end of file
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Siger.Client.License")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Siger.Client.License")]
[assembly: System.Reflection.AssemblyTitleAttribute("Siger.Client.License")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Siger.Client.License
build_property.ProjectDir = D:\Code\20220327\Voice\Siger.Client.License\
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Drawing;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
global using global::System.Windows.Forms;
D:\Code\20220327\Siger.Client.License\bin\Debug\net6.0-windows\Siger.Client.License.exe
D:\Code\20220327\Siger.Client.License\bin\Debug\net6.0-windows\Siger.Client.License.deps.json
D:\Code\20220327\Siger.Client.License\bin\Debug\net6.0-windows\Siger.Client.License.runtimeconfig.json
D:\Code\20220327\Siger.Client.License\bin\Debug\net6.0-windows\Siger.Client.License.dll
D:\Code\20220327\Siger.Client.License\bin\Debug\net6.0-windows\Siger.Client.License.pdb
D:\Code\20220327\Siger.Client.License\bin\Debug\net6.0-windows\System.Management.dll
D:\Code\20220327\Siger.Client.License\bin\Debug\net6.0-windows\runtimes\win\lib\net6.0\System.Management.dll
D:\Code\20220327\Siger.Client.License\bin\Debug\net6.0-windows\Siger.Client.Comm.dll
D:\Code\20220327\Siger.Client.License\bin\Debug\net6.0-windows\Siger.Client.Comm.pdb
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\Siger.Client.License.csproj.AssemblyReference.cache
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\Siger.Client.License.Form1.resources
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\Siger.Client.License.csproj.GenerateResource.cache
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\Siger.Client.License.GeneratedMSBuildEditorConfig.editorconfig
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\Siger.Client.License.AssemblyInfoInputs.cache
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\Siger.Client.License.AssemblyInfo.cs
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\Siger.Client.License.csproj.CoreCompileInputs.cache
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\Siger.Client.License.csproj.CopyComplete
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\Siger.Client.License.dll
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\refint\Siger.Client.License.dll
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\Siger.Client.License.pdb
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\Siger.Client.License.genruntimeconfig.cache
D:\Code\20220327\Siger.Client.License\obj\Debug\net6.0-windows\ref\Siger.Client.License.dll
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"System.CodeDom/6.0.0": {
"runtime": {
"lib/net6.0/System.CodeDom.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
},
"System.Management/6.0.0": {
"dependencies": {
"System.CodeDom": "6.0.0"
},
"runtime": {
"lib/net6.0/System.Management.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
},
"runtimeTargets": {
"runtimes/win/lib/net6.0/System.Management.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
}
}
},
"libraries": {
"System.CodeDom/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
"path": "system.codedom/6.0.0",
"hashPath": "system.codedom.6.0.0.nupkg.sha512"
},
"System.Management/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
"path": "system.management/6.0.0",
"hashPath": "system.management.6.0.0.nupkg.sha512"
}
}
}
\ No newline at end of file
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\jws\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\jws\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}
\ No newline at end of file
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Siger.Client.License")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Siger.Client.License")]
[assembly: System.Reflection.AssemblyTitleAttribute("Siger.Client.License")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Siger.Client.License
build_property.ProjectDir = D:\Code\20220327\Voice\Siger.Client.License\
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Drawing;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
global using global::System.Windows.Forms;
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"System.CodeDom/6.0.0": {
"runtime": {
"lib/net6.0/System.CodeDom.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
},
"System.Management/6.0.0": {
"dependencies": {
"System.CodeDom": "6.0.0"
},
"runtime": {
"lib/net6.0/System.Management.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
},
"runtimeTargets": {
"runtimes/win/lib/net6.0/System.Management.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
}
}
},
"libraries": {
"System.CodeDom/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
"path": "system.codedom/6.0.0",
"hashPath": "system.codedom.6.0.0.nupkg.sha512"
},
"System.Management/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==",
"path": "system.management/6.0.0",
"hashPath": "system.management.6.0.0.nupkg.sha512"
}
}
}
\ No newline at end of file
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\jws\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\jws\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}
\ No newline at end of file
{
"format": 1,
"restore": {
"D:\\Code\\20220327\\Voice\\Siger.Client.License\\Siger.Client.License.csproj": {}
},
"projects": {
"D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj",
"projectName": "Siger.Client.Comm",
"projectPath": "D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj",
"packagesPath": "C:\\Users\\jws\\.nuget\\packages\\",
"outputPath": "D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\jws\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"http://61.177.28.246:8081/repository/nuget-hosted/": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"System.Management": {
"target": "Package",
"version": "[6.0.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\Code\\20220327\\Voice\\Siger.Client.License\\Siger.Client.License.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Code\\20220327\\Voice\\Siger.Client.License\\Siger.Client.License.csproj",
"projectName": "Siger.Client.License",
"projectPath": "D:\\Code\\20220327\\Voice\\Siger.Client.License\\Siger.Client.License.csproj",
"packagesPath": "C:\\Users\\jws\\.nuget\\packages\\",
"outputPath": "D:\\Code\\20220327\\Voice\\Siger.Client.License\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\jws\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"http://61.177.28.246:8081/repository/nuget-hosted/": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {
"D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj": {
"projectPath": "D:\\Code\\20220327\\Voice\\Siger.Client.Comm\\Siger.Client.Comm.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json"
}
}
}
}
}
\ No newline at end of file
<?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\jws\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\jws\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment