ConnectionTest.csproj 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.1</TargetFramework>
  4. <LangVersion>8.0</LangVersion>
  5. <ProduceReferenceAssembly>true</ProduceReferenceAssembly>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <DebugType>portable</DebugType>
  9. <DebugSymbols>true</DebugSymbols>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Xamarin.Forms" Version="5.0.0.2578" />
  13. <PackageReference Include="Xamarin.Essentials" Version="1.7.5" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\..\..\..\..\inabox\InABox.Client.Remote.Json\InABox.Client.Remote.Json.csproj" />
  17. <ProjectReference Include="..\..\..\..\..\inabox\inabox.client.rest\InABox.Client.Rest\InABox.Client.Rest.csproj" />
  18. <ProjectReference Include="..\..\..\..\..\inabox\inabox.client.websocket\InABox.Client.WebSocket.csproj" />
  19. <ProjectReference Include="..\..\..\..\..\inabox\InABox.Configuration\InABox.Configuration.csproj" />
  20. <ProjectReference Include="..\..\..\..\..\inabox\InABox.Core\InABox.Core.csproj" />
  21. <ProjectReference Include="..\..\..\..\..\inabox\inabox.logging.shared\InABox.Logging.Shared.csproj" />
  22. <ProjectReference Include="..\..\..\..\..\inabox\inabox.websocket.shared\InABox.WebSocket.Shared.csproj" />
  23. <ProjectReference Include="..\..\..\..\prs.classes\PRSClasses.csproj" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <EmbeddedResource Update="ConnectionTestUnit.xaml">
  27. <Generator>MSBuild:UpdateDesignTimeXaml</Generator>
  28. </EmbeddedResource>
  29. </ItemGroup>
  30. </Project>