@lansweeper/scanningconfig-grpc 0.0.2 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/Lansweeper.ScanningConfig.GRPC.csproj +14 -6
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.deps.json +86 -4
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb +0 -0
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfo.cs +3 -3
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfoInputs.cache +1 -1
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.assets.cache +0 -0
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.AssemblyReference.cache +0 -0
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.CoreCompileInputs.cache +1 -1
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb +0 -0
- package/obj/Debug/net6.0/dfe805b7589f203f_scanningconfig.protodep +2 -0
- package/{Scanningconfig.cs → obj/Debug/net6.0/proto/Scanningconfig.cs} +227 -41
- package/obj/Debug/net6.0/proto/ScanningconfigGrpc.cs +124 -0
- package/obj/Debug/net6.0/ref/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/obj/Debug/net6.0/refint/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.dgspec.json +12 -2
- package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.g.props +6 -0
- package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.g.targets +5 -1
- package/obj/project.assets.json +209 -3
- package/obj/project.nuget.cache +6 -2
- package/package.json +2 -2
- package/.useprotoc +0 -0
- package/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +0 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.1.0](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/scanningconfig-grpc@0.0.2...@lansweeper/scanningconfig-grpc@0.1.0) (2023-04-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* ITD-825: Made GRPC services for client ([dd109e9](https://github.com/Lansweeper/lansweeperapis/commit/dd109e9a10e10f4c47edfa8946e0f1a0d49a9016))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.0.2](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/scanningconfig-grpc@0.0.1...@lansweeper/scanningconfig-grpc@0.0.2) (2023-03-30)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @lansweeper/scanningconfig-grpc
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
2
2
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
3
3
|
<PropertyGroup>
|
|
4
4
|
<TargetFrameworks>net6.0</TargetFrameworks>
|
|
@@ -7,15 +7,23 @@
|
|
|
7
7
|
<Company>Lansweeper</Company>
|
|
8
8
|
<Product>Lansweeper ScanningConfig model/proto</Product>
|
|
9
9
|
<Copyright>Lansweeper</Copyright>
|
|
10
|
-
<PackageVersion>0.0.
|
|
11
|
-
<Version>0.0.
|
|
12
|
-
<FileVersion>0.0.
|
|
10
|
+
<PackageVersion>0.0.2</PackageVersion>
|
|
11
|
+
<Version>0.0.2</Version>
|
|
12
|
+
<FileVersion>0.0.2</FileVersion>
|
|
13
13
|
<RepositoryUrl>https://github.com/Lansweeper/lansweeperapis</RepositoryUrl>
|
|
14
14
|
</PropertyGroup>
|
|
15
|
+
<ItemGroup>
|
|
16
|
+
<None Remove="proto\scanningconfig.proto" />
|
|
17
|
+
</ItemGroup>
|
|
15
18
|
<ItemGroup>
|
|
16
|
-
<PackageReference Include="Google.Protobuf" Version="3.22.0"/>
|
|
19
|
+
<PackageReference Include="Google.Protobuf" Version="3.22.0" />
|
|
20
|
+
<PackageReference Include="Grpc.Core" Version="2.46.6" />
|
|
21
|
+
<PackageReference Include="Grpc.Tools" Version="2.54.0">
|
|
22
|
+
<PrivateAssets>all</PrivateAssets>
|
|
23
|
+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
24
|
+
</PackageReference>
|
|
17
25
|
</ItemGroup>
|
|
18
26
|
<ItemGroup>
|
|
19
|
-
<Protobuf Include="
|
|
27
|
+
<Protobuf Include="proto\scanningconfig.proto" GrpcServices="Client" />
|
|
20
28
|
</ItemGroup>
|
|
21
29
|
</Project>
|
|
@@ -6,9 +6,11 @@
|
|
|
6
6
|
"compilationOptions": {},
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v6.0": {
|
|
9
|
-
"Lansweeper.ScanningConfig.GRPC/0.0.
|
|
9
|
+
"Lansweeper.ScanningConfig.GRPC/0.0.2": {
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"Google.Protobuf": "3.22.0"
|
|
11
|
+
"Google.Protobuf": "3.22.0",
|
|
12
|
+
"Grpc.Core": "2.46.6",
|
|
13
|
+
"Grpc.Tools": "2.54.0"
|
|
12
14
|
},
|
|
13
15
|
"runtime": {
|
|
14
16
|
"Lansweeper.ScanningConfig.GRPC.dll": {}
|
|
@@ -21,11 +23,63 @@
|
|
|
21
23
|
"fileVersion": "3.22.0.0"
|
|
22
24
|
}
|
|
23
25
|
}
|
|
24
|
-
}
|
|
26
|
+
},
|
|
27
|
+
"Grpc.Core/2.46.6": {
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"Grpc.Core.Api": "2.46.6",
|
|
30
|
+
"System.Memory": "4.5.3"
|
|
31
|
+
},
|
|
32
|
+
"runtime": {
|
|
33
|
+
"lib/netstandard2.0/Grpc.Core.dll": {
|
|
34
|
+
"assemblyVersion": "2.0.0.0",
|
|
35
|
+
"fileVersion": "2.46.6.0"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"runtimeTargets": {
|
|
39
|
+
"runtimes/linux-arm64/native/libgrpc_csharp_ext.arm64.so": {
|
|
40
|
+
"rid": "linux-arm64",
|
|
41
|
+
"assetType": "native",
|
|
42
|
+
"fileVersion": "0.0.0.0"
|
|
43
|
+
},
|
|
44
|
+
"runtimes/linux-x64/native/libgrpc_csharp_ext.x64.so": {
|
|
45
|
+
"rid": "linux-x64",
|
|
46
|
+
"assetType": "native",
|
|
47
|
+
"fileVersion": "0.0.0.0"
|
|
48
|
+
},
|
|
49
|
+
"runtimes/osx-x64/native/libgrpc_csharp_ext.x64.dylib": {
|
|
50
|
+
"rid": "osx-x64",
|
|
51
|
+
"assetType": "native",
|
|
52
|
+
"fileVersion": "0.0.0.0"
|
|
53
|
+
},
|
|
54
|
+
"runtimes/win-x64/native/grpc_csharp_ext.x64.dll": {
|
|
55
|
+
"rid": "win-x64",
|
|
56
|
+
"assetType": "native",
|
|
57
|
+
"fileVersion": "0.0.0.0"
|
|
58
|
+
},
|
|
59
|
+
"runtimes/win-x86/native/grpc_csharp_ext.x86.dll": {
|
|
60
|
+
"rid": "win-x86",
|
|
61
|
+
"assetType": "native",
|
|
62
|
+
"fileVersion": "0.0.0.0"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"Grpc.Core.Api/2.46.6": {
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"System.Memory": "4.5.3"
|
|
69
|
+
},
|
|
70
|
+
"runtime": {
|
|
71
|
+
"lib/netstandard2.1/Grpc.Core.Api.dll": {
|
|
72
|
+
"assemblyVersion": "2.0.0.0",
|
|
73
|
+
"fileVersion": "2.46.6.0"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"Grpc.Tools/2.54.0": {},
|
|
78
|
+
"System.Memory/4.5.3": {}
|
|
25
79
|
}
|
|
26
80
|
},
|
|
27
81
|
"libraries": {
|
|
28
|
-
"Lansweeper.ScanningConfig.GRPC/0.0.
|
|
82
|
+
"Lansweeper.ScanningConfig.GRPC/0.0.2": {
|
|
29
83
|
"type": "project",
|
|
30
84
|
"serviceable": false,
|
|
31
85
|
"sha512": ""
|
|
@@ -36,6 +90,34 @@
|
|
|
36
90
|
"sha512": "sha512-UE1TRMrBBBmnA8xbqzTvX4sSwn+2W/Xxrs/v5Aws/7C8RD6fY6STi1eAnCu7Ez93oHcPdpyStGnFel/aIB407Q==",
|
|
37
91
|
"path": "google.protobuf/3.22.0",
|
|
38
92
|
"hashPath": "google.protobuf.3.22.0.nupkg.sha512"
|
|
93
|
+
},
|
|
94
|
+
"Grpc.Core/2.46.6": {
|
|
95
|
+
"type": "package",
|
|
96
|
+
"serviceable": true,
|
|
97
|
+
"sha512": "sha512-ZoRg3KmOJ2urTF4+u3H0b1Yv10xzz2Y/flFWS2tnRmj8dbKLeiJaSRqu4LOBD3ova90evqLkVZ85kUkC4JT4lw==",
|
|
98
|
+
"path": "grpc.core/2.46.6",
|
|
99
|
+
"hashPath": "grpc.core.2.46.6.nupkg.sha512"
|
|
100
|
+
},
|
|
101
|
+
"Grpc.Core.Api/2.46.6": {
|
|
102
|
+
"type": "package",
|
|
103
|
+
"serviceable": true,
|
|
104
|
+
"sha512": "sha512-Z7HJGqJYyKb53qfp1jf0wRDYs3sxOnkAFxXAW6q52LLmX/zxzjtFLI9eaWO5UC0weiWjn4iT1FzR+tj9qYZAMg==",
|
|
105
|
+
"path": "grpc.core.api/2.46.6",
|
|
106
|
+
"hashPath": "grpc.core.api.2.46.6.nupkg.sha512"
|
|
107
|
+
},
|
|
108
|
+
"Grpc.Tools/2.54.0": {
|
|
109
|
+
"type": "package",
|
|
110
|
+
"serviceable": true,
|
|
111
|
+
"sha512": "sha512-E+c9vTTSM1AHX5085MeF4J6QS0qACiz0Svm2zk+/F6gjuSo178gMLn7n6jMOSdF6OEHde5Cm86ouD8X49SrVbA==",
|
|
112
|
+
"path": "grpc.tools/2.54.0",
|
|
113
|
+
"hashPath": "grpc.tools.2.54.0.nupkg.sha512"
|
|
114
|
+
},
|
|
115
|
+
"System.Memory/4.5.3": {
|
|
116
|
+
"type": "package",
|
|
117
|
+
"serviceable": true,
|
|
118
|
+
"sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
|
|
119
|
+
"path": "system.memory/4.5.3",
|
|
120
|
+
"hashPath": "system.memory.4.5.3.nupkg.sha512"
|
|
39
121
|
}
|
|
40
122
|
}
|
|
41
123
|
}
|
|
Binary file
|
|
Binary file
|
|
@@ -14,11 +14,11 @@ using System.Reflection;
|
|
|
14
14
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
15
15
|
[assembly: System.Reflection.AssemblyCopyrightAttribute("Lansweeper")]
|
|
16
16
|
[assembly: System.Reflection.AssemblyDescriptionAttribute("More Info : http://www.lansweeper.com")]
|
|
17
|
-
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.
|
|
18
|
-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.
|
|
17
|
+
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.2")]
|
|
18
|
+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.2")]
|
|
19
19
|
[assembly: System.Reflection.AssemblyProductAttribute("Lansweeper ScanningConfig model/proto")]
|
|
20
20
|
[assembly: System.Reflection.AssemblyTitleAttribute("Lansweeper.ScanningConfig.GRPC")]
|
|
21
|
-
[assembly: System.Reflection.AssemblyVersionAttribute("0.0.
|
|
21
|
+
[assembly: System.Reflection.AssemblyVersionAttribute("0.0.2.0")]
|
|
22
22
|
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/Lansweeper/lansweeperapis")]
|
|
23
23
|
|
|
24
24
|
// Generated by the MSBuild WriteCodeFragment class.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
ad3d54eca7f07ece76c92e7f4647017d702c3ab2
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
479fc599339d666869a2391c27abe0d23a7181fa
|
|
Binary file
|
|
Binary file
|