mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
23 lines
821 B
XML
23 lines
821 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>XSC</AssemblyName>
|
|
<TargetFramework>netstandard1.6</TargetFramework>
|
|
<VersionPrefix>1.0.0</VersionPrefix>
|
|
<DebugType>Full</DebugType>
|
|
<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>..\..\Cosmos.snk</AssemblyOriginatorKeyFile>
|
|
<OutputType>exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NETCore.Runtime.CoreCLR" Version="1.0.2" />
|
|
<PackageReference Include="Microsoft.NETCore.DotNetHostPolicy" Version="1.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Cosmos.Assembler\Cosmos.Assembler.csproj" />
|
|
<ProjectReference Include="..\XSharp.Common\XSharp.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|