mirror of
https://github.com/Grace-Solutions/PSProxmox.git
synced 2026-08-09 23:00:01 +00:00
27 lines
896 B
XML
27 lines
896 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<AssemblyName>PSProxmox</AssemblyName>
|
|
<RootNamespace>PSProxmox</RootNamespace>
|
|
<Version>2023.04.28.1324</Version>
|
|
<Authors>PSProxmox Team</Authors>
|
|
<Description>PowerShell module for managing Proxmox VE clusters</Description>
|
|
<Copyright>Copyright © 2023</Copyright>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0" />
|
|
<PackageReference Include="System.Management.Automation" Version="6.1.7" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="PSProxmox.psd1">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|