@lansweeper/scanningconfig-grpc 0.0.1 → 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.
Files changed (28) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/Lansweeper.ScanningConfig.GRPC.csproj +14 -6
  3. package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.deps.json +86 -4
  4. package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll +0 -0
  5. package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb +0 -0
  6. package/go.sum +20 -0
  7. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfo.cs +3 -3
  8. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfoInputs.cache +1 -1
  9. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.GeneratedMSBuildEditorConfig.editorconfig +1 -1
  10. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.assets.cache +0 -0
  11. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.AssemblyReference.cache +0 -0
  12. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.CoreCompileInputs.cache +1 -1
  13. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.FileListAbsolute.txt +12 -12
  14. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll +0 -0
  15. package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb +0 -0
  16. package/obj/Debug/net6.0/dfe805b7589f203f_scanningconfig.protodep +2 -0
  17. package/{Scanningconfig.cs → obj/Debug/net6.0/proto/Scanningconfig.cs} +227 -41
  18. package/obj/Debug/net6.0/proto/ScanningconfigGrpc.cs +124 -0
  19. package/obj/Debug/net6.0/ref/Lansweeper.ScanningConfig.GRPC.dll +0 -0
  20. package/obj/Debug/net6.0/refint/Lansweeper.ScanningConfig.GRPC.dll +0 -0
  21. package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.dgspec.json +17 -7
  22. package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.g.props +6 -0
  23. package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.g.targets +5 -1
  24. package/obj/project.assets.json +212 -6
  25. package/obj/project.nuget.cache +7 -3
  26. package/package.json +2 -2
  27. package/.useprotoc +0 -0
  28. package/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +0 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
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
+
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)
18
+
19
+ **Note:** Version bump only for package @lansweeper/scanningconfig-grpc
20
+
21
+
22
+
23
+
24
+
6
25
  ## 0.0.1 (2023-03-30)
7
26
 
8
27
 
@@ -1,4 +1,4 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
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.0</PackageVersion>
11
- <Version>0.0.0</Version>
12
- <FileVersion>0.0.0</FileVersion>
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=".scanningconfig.proto"/>
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.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.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
  }
package/go.sum ADDED
@@ -0,0 +1,20 @@
1
+ github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
2
+ github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=
3
+ github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
4
+ github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
5
+ github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
6
+ golang.org/x/net v0.8.0 h1:Zrh2ngAOFYneWTAIAPethzeaQLuHwhuBkuV6ZiRnUaQ=
7
+ golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc=
8
+ golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ=
9
+ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
10
+ golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68=
11
+ golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
12
+ golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
13
+ google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f h1:BWUVssLB0HVOSY78gIdvk1dTVYtT1y8SBWtPYuTJ/6w=
14
+ google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM=
15
+ google.golang.org/grpc v1.54.0 h1:EhTqbhiYeixwWQtAEZAxmV9MGqcjEU2mFx52xCzNyag=
16
+ google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g=
17
+ google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
18
+ google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
19
+ google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng=
20
+ google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
@@ -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.0")]
18
- [assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.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.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
- aab2ce43a9c3388bc0679a8e4181d22e87492831
1
+ ad3d54eca7f07ece76c92e7f4647017d702c3ab2
@@ -7,4 +7,4 @@ build_property.InvariantGlobalization =
7
7
  build_property.PlatformNeutralAssembly =
8
8
  build_property._SupportedPlatformList = Linux,macOS,Windows
9
9
  build_property.RootNamespace = Lansweeper.ScanningConfig.GRPC
10
- build_property.ProjectDir = /home/circleci/project/packages/scanningConfig/grpc/
10
+ build_property.ProjectDir = /home/circleci/project/packages/scanningconfig/grpc/
@@ -1 +1 @@
1
- 476b81d82543b7ce5c0a1e40cad442fab14784b2
1
+ 479fc599339d666869a2391c27abe0d23a7181fa
@@ -1,12 +1,12 @@
1
- /home/circleci/project/packages/scanningConfig/grpc/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.deps.json
2
- /home/circleci/project/packages/scanningConfig/grpc/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll
3
- /home/circleci/project/packages/scanningConfig/grpc/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb
4
- /home/circleci/project/packages/scanningConfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.AssemblyReference.cache
5
- /home/circleci/project/packages/scanningConfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.GeneratedMSBuildEditorConfig.editorconfig
6
- /home/circleci/project/packages/scanningConfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfoInputs.cache
7
- /home/circleci/project/packages/scanningConfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfo.cs
8
- /home/circleci/project/packages/scanningConfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.CoreCompileInputs.cache
9
- /home/circleci/project/packages/scanningConfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll
10
- /home/circleci/project/packages/scanningConfig/grpc/obj/Debug/net6.0/refint/Lansweeper.ScanningConfig.GRPC.dll
11
- /home/circleci/project/packages/scanningConfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb
12
- /home/circleci/project/packages/scanningConfig/grpc/obj/Debug/net6.0/ref/Lansweeper.ScanningConfig.GRPC.dll
1
+ /home/circleci/project/packages/scanningconfig/grpc/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.deps.json
2
+ /home/circleci/project/packages/scanningconfig/grpc/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll
3
+ /home/circleci/project/packages/scanningconfig/grpc/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb
4
+ /home/circleci/project/packages/scanningconfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.AssemblyReference.cache
5
+ /home/circleci/project/packages/scanningconfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.GeneratedMSBuildEditorConfig.editorconfig
6
+ /home/circleci/project/packages/scanningconfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfoInputs.cache
7
+ /home/circleci/project/packages/scanningconfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfo.cs
8
+ /home/circleci/project/packages/scanningconfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.CoreCompileInputs.cache
9
+ /home/circleci/project/packages/scanningconfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll
10
+ /home/circleci/project/packages/scanningconfig/grpc/obj/Debug/net6.0/refint/Lansweeper.ScanningConfig.GRPC.dll
11
+ /home/circleci/project/packages/scanningconfig/grpc/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb
12
+ /home/circleci/project/packages/scanningconfig/grpc/obj/Debug/net6.0/ref/Lansweeper.ScanningConfig.GRPC.dll
@@ -0,0 +1,2 @@
1
+ obj/Debug/net6.0/proto/Scanningconfig.cs \
2
+ obj/Debug/net6.0/proto/ScanningconfigGrpc.cs: proto/scanningconfig.proto