mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
18 lines
650 B
XML
18 lines
650 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>XSC</AssemblyName>
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
<RuntimeIdentifiers>win7-x86</RuntimeIdentifiers>
|
|
<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>..\..\Cosmos.snk</AssemblyOriginatorKeyFile>
|
|
<OutputType>Exe</OutputType>
|
|
<ApplicationIcon>XSharp.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Cosmos.Assembler\Cosmos.Assembler.csproj" />
|
|
<ProjectReference Include="..\XSharp.Common\XSharp.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|