mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<RootNamespace>Remotely.Tests</RootNamespace>
|
|
|
|
<AssemblyName>Remotely_Tests</AssemblyName>
|
|
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Resources\Frame1.jpg" />
|
|
<None Remove="Resources\Frame2.jpg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\Frame1.jpg" />
|
|
<EmbeddedResource Include="Resources\Frame2.jpg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="5.0.2" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
|
|
<PackageReference Include="Moq" Version="4.16.0" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Desktop.Core\Desktop.Core.csproj" />
|
|
<ProjectReference Include="..\Desktop.Win\Desktop.Win.csproj" />
|
|
<ProjectReference Include="..\Server\Server.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|