23 lines
579 B
XML
23 lines
579 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\MoonWorks\MoonWorks.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>library</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="..\MoonWorks.Test.Common\Content\**\*.*">
|
|
<Link>Content\%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<Import Project=".\CopyMoonlibs.targets" />
|
|
|
|
</Project>
|