18 lines
793 B
XML
18 lines
793 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<AssemblyName>ShrinkContext.AppAdapter</AssemblyName>
|
|
<RootNamespace>ShrinkContext.AppAdapter</RootNamespace>
|
|
<PackageId>ShrinkSDK.Context.AppAdapter</PackageId>
|
|
<Version>0.2.0</Version>
|
|
<Description>Engine-neutral ShrinkContext composition host for ShrinkApp.</Description>
|
|
<ShrinkCodeGenEnabled>false</ShrinkCodeGenEnabled>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Runtime\*.cs" />
|
|
<ProjectReference Include="..\ShrinkSDK.Context.Core\ShrinkSDK.Context.Core.csproj" />
|
|
<ProjectReference Include="..\ShrinkSDK.App.Core\ShrinkSDK.App.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|