mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
30 lines
1 KiB
XML
30 lines
1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
||
<PropertyGroup>
|
||
<TargetFramework>netstandard1.5</TargetFramework>
|
||
<SignAssembly>True</SignAssembly>
|
||
<AssemblyOriginatorKeyFile>..\..\Cosmos.snk</AssemblyOriginatorKeyFile>
|
||
<Authors>Cosmos</Authors>
|
||
<Company>Cosmos</Company>
|
||
</PropertyGroup>
|
||
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" />
|
||
<PropertyGroup>
|
||
<PostBuildEvent>call "$(SolutionDir)UpdateBinCache.bat" "$(TargetPath)" $(TargetFileName)</PostBuildEvent>
|
||
</PropertyGroup>
|
||
|
||
<ItemGroup>
|
||
<ProjectReference Include="..\Cosmos.Common\Cosmos.Common.csproj" />
|
||
<ProjectReference Include="..\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" />
|
||
<ProjectReference Include="..\Cosmos.HAL\Cosmos.HAL.csproj" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<Reference Include="Cosmos.IL2CPU">
|
||
<HintPath>..\..\Build\bin\Cosmos.IL2CPU.dll</HintPath>
|
||
</Reference>
|
||
<Reference Include="Cosmos.IL2CPU.Plugs">
|
||
<HintPath>..\..\Build\bin\Cosmos.IL2CPU.Plugs.dll</HintPath>
|
||
</Reference>
|
||
</ItemGroup>
|
||
|
||
</Project>
|