18 lines
706 B
XML
18 lines
706 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<AssemblyName>IMSApiDotNet.LegacyBinarySmoke</AssemblyName>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<!-- IMPORTANT: this executable is compiled against the untouched legacy DLL. -->
|
|
<Reference Include="IMSApiDotNet">
|
|
<HintPath>..\..\reference\IMSApiDotNet_10.0.0-3_original.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net48" Version="1.0.3" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
</Project>
|