Cosmos/source/XSharp.Compiler/XSharp.Compiler.csproj
2017-03-19 09:29:46 -05:00

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>