mirror of
https://github.com/tribufu/proxmox-sharp
synced 2026-05-06 06:47:29 +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
|
||||
# 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
|
||||
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
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using dotenv.net;
|
||||
|
||||
namespace Tribufu.Proxmox.Tests
|
||||
namespace ProxmoxSharp.Tests
|
||||
{
|
||||
public static class Program
|
||||
{
|
||||
|
|
@ -9,6 +9,6 @@
|
|||
<PackageReference Include="dotenv.net" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Tribufu.Proxmox\Tribufu.Proxmox.csproj" />
|
||||
<ProjectReference Include="..\ProxmoxSharp\ProxmoxSharp.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
using ProxmoxSharp.Models;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Tribufu.Proxmox.Models;
|
||||
|
||||
namespace Tribufu.Proxmox.Interfaces
|
||||
namespace ProxmoxSharp.Interfaces
|
||||
{
|
||||
public interface IProxmoxClient
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxBalloonInfo
|
||||
{
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxBlockStats
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxBootInfo
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxContainer
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxCpuInfo
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxHighAvailability
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxKernelInfo
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxKsmInfo
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxMemoryStats
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxNicStats
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxNode
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxNodeStatus
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxStorageStats
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxSupportInfo
|
||||
{
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxVirtualMachine
|
||||
{
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Tribufu.Proxmox.Models
|
||||
namespace ProxmoxSharp.Models
|
||||
{
|
||||
public class ProxmoxVirtualMachineStatus
|
||||
{
|
||||
|
|
@ -2,14 +2,14 @@
|
|||
// SPDX-License-Identifier: MIT
|
||||
|
||||
using Newtonsoft.Json.Linq;
|
||||
using ProxmoxSharp.Interfaces;
|
||||
using ProxmoxSharp.Models;
|
||||
using RestSharp;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Tribufu.Proxmox.Interfaces;
|
||||
using Tribufu.Proxmox.Models;
|
||||
|
||||
namespace Tribufu.Proxmox
|
||||
namespace ProxmoxSharp
|
||||
{
|
||||
public class ProxmoxClient : IProxmoxClient
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<PackageId>Tribufu.Proxmox</PackageId>
|
||||
<PackageId>ProxmoxSharp</PackageId>
|
||||
<Description>Proxmox API Client</Description>
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
</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