mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
19 lines
757 B
XML
19 lines
757 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
<RuntimeIdentifier>win7-x86</RuntimeIdentifier>
|
|
<DebugType>Full</DebugType>
|
|
<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>..\..\Cosmos.snk</AssemblyOriginatorKeyFile>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\source\IL2CPU\IL2CPU.csproj" />
|
|
<ProjectReference Include="..\..\Tools\ElfMap2DebugDb\ElfMap2DebugDb.csproj" />
|
|
<ProjectReference Include="..\..\Tools\NASM\NASM.csproj" />
|
|
<ProjectReference Include="..\Cosmos.TestRunner.Core\Cosmos.TestRunner.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|