- Add Cake build project - Change to CPM - Package bumps for security bumps - Reorganise solution structure to group harness projects
19 lines
544 B
XML
19 lines
544 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.PowerShell.SDK" />
|
|
<PackageReference Include="System.Security.Cryptography.Xml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PowershellModule\PowershellModule.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|