@lansweeper/scanningconfig-grpc 0.0.1
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/.useprotoc +0 -0
- package/CHANGELOG.md +11 -0
- package/Lansweeper.ScanningConfig.GRPC.csproj +21 -0
- package/Scanningconfig.cs +2230 -0
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.deps.json +41 -0
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.dll +0 -0
- package/bin/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.pdb +0 -0
- package/buf.yaml +22 -0
- package/gen-proto/image.json +1 -0
- package/gen-proto/index.d.ts +2 -0
- package/gen-proto/index.js +3 -0
- package/gen-proto/scanningconfig_grpc_pb.d.ts +41 -0
- package/gen-proto/scanningconfig_grpc_pb.js +44 -0
- package/gen-proto/scanningconfig_pb.d.ts +293 -0
- package/gen-proto/scanningconfig_pb.js +2125 -0
- package/generated-go/scanningconfig.pb.go +1107 -0
- package/generated-go/scanningconfig_grpc.pb.go +109 -0
- package/go.mod +3 -0
- package/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +4 -0
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfo.cs +25 -0
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.AssemblyInfoInputs.cache +1 -0
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.GeneratedMSBuildEditorConfig.editorconfig +10 -0
- 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 -0
- package/obj/Debug/net6.0/Lansweeper.ScanningConfig.GRPC.csproj.FileListAbsolute.txt +12 -0
- 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/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 +68 -0
- package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.g.props +15 -0
- package/obj/Lansweeper.ScanningConfig.GRPC.csproj.nuget.g.targets +2 -0
- package/obj/project.assets.json +113 -0
- package/obj/project.nuget.cache +10 -0
- package/package.json +16 -0
- package/proto/scanningconfig.proto +83 -0
package/.useprotoc
ADDED
|
File without changes
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## 0.0.1 (2023-03-30)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* generate scanning config proto ([fca0e50](https://github.com/Lansweeper/lansweeperapis/commit/fca0e50057ef151fcabb6ef3f49178168568de5a))
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<Project Sdk="Microsoft.NET.Sdk">
|
|
3
|
+
<PropertyGroup>
|
|
4
|
+
<TargetFrameworks>net6.0</TargetFrameworks>
|
|
5
|
+
<Title>Lansweeper ScanningConfig model/proto</Title>
|
|
6
|
+
<Description>More Info : http://www.lansweeper.com</Description>
|
|
7
|
+
<Company>Lansweeper</Company>
|
|
8
|
+
<Product>Lansweeper ScanningConfig model/proto</Product>
|
|
9
|
+
<Copyright>Lansweeper</Copyright>
|
|
10
|
+
<PackageVersion>0.0.0</PackageVersion>
|
|
11
|
+
<Version>0.0.0</Version>
|
|
12
|
+
<FileVersion>0.0.0</FileVersion>
|
|
13
|
+
<RepositoryUrl>https://github.com/Lansweeper/lansweeperapis</RepositoryUrl>
|
|
14
|
+
</PropertyGroup>
|
|
15
|
+
<ItemGroup>
|
|
16
|
+
<PackageReference Include="Google.Protobuf" Version="3.22.0"/>
|
|
17
|
+
</ItemGroup>
|
|
18
|
+
<ItemGroup>
|
|
19
|
+
<Protobuf Include=".scanningconfig.proto"/>
|
|
20
|
+
</ItemGroup>
|
|
21
|
+
</Project>
|