-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPSCCMClient.Core.csproj
More file actions
23 lines (20 loc) · 931 Bytes
/
PSCCMClient.Core.csproj
File metadata and controls
23 lines (20 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>PSCCMClient.Core</PackageId>
<Version>1.0.0</Version>
<Authors>Cody Mathis</Authors>
<Company>PSCCMClient</Company>
<Description>C# library for interacting with Microsoft Endpoint Configuration Manager (MEMCM) clients</Description>
<PackageTags>SCCM;MEMCM;ConfigMgr;SystemCenter</PackageTags>
<RepositoryUrl>https://github.com/CodyMathis123/PSCCMClient</RepositoryUrl>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="8.0.0" />
<PackageReference Include="Microsoft.Management.Infrastructure" Version="3.0.0" />
</ItemGroup>
</Project>