2022-09-14 22:00:45 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2022-09-15 10:44:50 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2022-09-14 22:00:45 +02:00
|
|
|
<ItemGroup>
|
2022-09-15 10:44:50 +02:00
|
|
|
<!-- include reference assemblies so we can build for old framework versions without having to install them -->
|
2022-09-14 22:00:45 +02:00
|
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" />
|
|
|
|
</ItemGroup>
|
2022-09-15 10:44:50 +02:00
|
|
|
|
|
|
|
<!-- dummy pack target to allow for this (non-SDK-style) project to be included in dotnet pack -->
|
|
|
|
<Target Name="Pack" />
|
2022-09-14 22:00:45 +02:00
|
|
|
</Project>
|