mirror of
https://github.com/tribufu/proxmox-sharp
synced 2026-06-01 09:42:38 +00:00
Rename project namespace
This commit is contained in:
parent
8efcd46e62
commit
79236af76b
24 changed files with 27 additions and 27 deletions
|
|
@ -1,9 +1,9 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 17
|
# Visual Studio Version 17
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tribufu.Proxmox", "src\Tribufu.Proxmox\Tribufu.Proxmox.csproj", "{A2756937-8D07-4164-9CB7-2C94E9FE0A08}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProxmoxSharp", "src\ProxmoxSharp\ProxmoxSharp.csproj", "{A2756937-8D07-4164-9CB7-2C94E9FE0A08}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tribufu.Proxmox.Tests", "src\Tribufu.Proxmox.Tests\Tribufu.Proxmox.Tests.csproj", "{0A59E867-1A89-4E07-ABE7-E7DC2FEE9317}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProxmoxSharp.Tests", "src\ProxmoxSharp.Tests\ProxmoxSharp.Tests.csproj", "{0A59E867-1A89-4E07-ABE7-E7DC2FEE9317}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using dotenv.net;
|
using dotenv.net;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Tests
|
namespace ProxmoxSharp.Tests
|
||||||
{
|
{
|
||||||
public static class Program
|
public static class Program
|
||||||
{
|
{
|
||||||
|
|
@ -9,6 +9,6 @@
|
||||||
<PackageReference Include="dotenv.net" />
|
<PackageReference Include="dotenv.net" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Tribufu.Proxmox\Tribufu.Proxmox.csproj" />
|
<ProjectReference Include="..\ProxmoxSharp\ProxmoxSharp.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
// Copyright (c) Tribufu. All Rights Reserved.
|
// Copyright (c) Tribufu. All Rights Reserved.
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
using ProxmoxSharp.Models;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Tribufu.Proxmox.Models;
|
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Interfaces
|
namespace ProxmoxSharp.Interfaces
|
||||||
{
|
{
|
||||||
public interface IProxmoxClient
|
public interface IProxmoxClient
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxBalloonInfo
|
public class ProxmoxBalloonInfo
|
||||||
{
|
{
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxBlockStats
|
public class ProxmoxBlockStats
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxBootInfo
|
public class ProxmoxBootInfo
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxContainer
|
public class ProxmoxContainer
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxCpuInfo
|
public class ProxmoxCpuInfo
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxHighAvailability
|
public class ProxmoxHighAvailability
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxKernelInfo
|
public class ProxmoxKernelInfo
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxKsmInfo
|
public class ProxmoxKsmInfo
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxMemoryStats
|
public class ProxmoxMemoryStats
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxNicStats
|
public class ProxmoxNicStats
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxNode
|
public class ProxmoxNode
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxNodeStatus
|
public class ProxmoxNodeStatus
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxStorageStats
|
public class ProxmoxStorageStats
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxSupportInfo
|
public class ProxmoxSupportInfo
|
||||||
{
|
{
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxVirtualMachine
|
public class ProxmoxVirtualMachine
|
||||||
{
|
{
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Tribufu.Proxmox.Models
|
namespace ProxmoxSharp.Models
|
||||||
{
|
{
|
||||||
public class ProxmoxVirtualMachineStatus
|
public class ProxmoxVirtualMachineStatus
|
||||||
{
|
{
|
||||||
|
|
@ -2,14 +2,14 @@
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
using Newtonsoft.Json.Linq;
|
using Newtonsoft.Json.Linq;
|
||||||
|
using ProxmoxSharp.Interfaces;
|
||||||
|
using ProxmoxSharp.Models;
|
||||||
using RestSharp;
|
using RestSharp;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Tribufu.Proxmox.Interfaces;
|
|
||||||
using Tribufu.Proxmox.Models;
|
|
||||||
|
|
||||||
namespace Tribufu.Proxmox
|
namespace ProxmoxSharp
|
||||||
{
|
{
|
||||||
public class ProxmoxClient : IProxmoxClient
|
public class ProxmoxClient : IProxmoxClient
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PackageId>Tribufu.Proxmox</PackageId>
|
<PackageId>ProxmoxSharp</PackageId>
|
||||||
<Description>Proxmox API Client</Description>
|
<Description>Proxmox API Client</Description>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
1
src/ProxmoxSharp/README.md
Normal file
1
src/ProxmoxSharp/README.md
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
../../README.md
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../../README.md
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue