| 123456789101112131415161718192021222324252627282930313233 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.1</TargetFramework>
- <LangVersion>8.0</LangVersion>
- <ProduceReferenceAssembly>true</ProduceReferenceAssembly>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DebugType>portable</DebugType>
- <DebugSymbols>true</DebugSymbols>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Xamarin.Forms" Version="5.0.0.2578" />
- <PackageReference Include="Xamarin.Essentials" Version="1.7.5" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\..\..\inabox\InABox.Client.Remote.Json\InABox.Client.Remote.Json.csproj" />
- <ProjectReference Include="..\..\..\..\..\inabox\inabox.client.rest\InABox.Client.Rest\InABox.Client.Rest.csproj" />
- <ProjectReference Include="..\..\..\..\..\inabox\inabox.client.websocket\InABox.Client.WebSocket.csproj" />
- <ProjectReference Include="..\..\..\..\..\inabox\InABox.Configuration\InABox.Configuration.csproj" />
- <ProjectReference Include="..\..\..\..\..\inabox\InABox.Core\InABox.Core.csproj" />
- <ProjectReference Include="..\..\..\..\..\inabox\inabox.logging.shared\InABox.Logging.Shared.csproj" />
- <ProjectReference Include="..\..\..\..\..\inabox\inabox.websocket.shared\InABox.WebSocket.Shared.csproj" />
- <ProjectReference Include="..\..\..\..\prs.classes\PRSClasses.csproj" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Update="ConnectionTestUnit.xaml">
- <Generator>MSBuild:UpdateDesignTimeXaml</Generator>
- </EmbeddedResource>
- </ItemGroup>
- </Project>
|