mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
42 lines
1.3 KiB
XML
42 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.5" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="5.0.5" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
|
|
<PackageReference Include="Moq" Version="4.16.1" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Agent\Agent.csproj" />
|
|
<ProjectReference Include="..\Desktop.Core\Desktop.Core.csproj" />
|
|
<ProjectReference Include="..\Desktop.Win\Desktop.Win.csproj" />
|
|
<ProjectReference Include="..\Server\Server.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|