singrdk/base/Applications/Tests/AdjustTest/AdjustTest.csproj

37 lines
1.1 KiB
XML

<!--
##############################################################################
#
# Microsoft Research Singularity
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
# Note:
#
##############################################################################
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\Paths.targets" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<AssemblyName>AdjustTest</AssemblyName>
<!--Language>C#</Language-->
<Runtime>Full</Runtime>
</PropertyGroup>
<ItemGroup>
<Compile Include="AdjustTest.cs" />
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Console\Console.App.csproj"/>
</ItemGroup>
<Import Project="$(SINGULARITY_ROOT)\Targets\ConsoleCategory.targets" />
<Target Name="Test" DependsOnTargets="Build">
<MakeDir Directories="$(OutputPath)\Adjusted"/>
<Exec Command='$(BUILDDIR)\audit.exe --output $(OutputPath)\Adjusted\$(AssemblyName)$(AssemblyExt) $(OutputAssemblyPath)'/>
</Target>
</Project>