38 lines
827 B
XML
Executable File
38 lines
827 B
XML
Executable File
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectToBuild Include="corecrypto.sln">
|
|
|
|
<Properties>Configuration=Debug;Platform=Win32</Properties>
|
|
|
|
</ProjectToBuild>
|
|
|
|
<ProjectToBuild Include="corecrypto.sln">
|
|
|
|
<Properties>Configuration=Debug;Platform=x64</Properties>
|
|
|
|
</ProjectToBuild>
|
|
|
|
<ProjectToBuild Include="corecrypto.sln">
|
|
|
|
<Properties>Configuration=Release;Platform=Win32</Properties>
|
|
|
|
</ProjectToBuild>
|
|
|
|
<ProjectToBuild Include="corecrypto.sln">
|
|
|
|
<Properties>Configuration=Release;Platform=x64</Properties>
|
|
|
|
</ProjectToBuild>
|
|
|
|
</ItemGroup>
|
|
|
|
<Target Name="install">
|
|
|
|
<MSBuild Projects="@(ProjectToBuild)" Targets="ReBuild" />
|
|
|
|
</Target>
|
|
|
|
</Project>
|