mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
101 lines
4.4 KiB
XML
101 lines
4.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
|
|
<DockerTargetOS>Windows</DockerTargetOS>
|
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
|
<FileVersion>1.0.0.0</FileVersion>
|
|
<Platforms>AnyCPU;x86;x64</Platforms>
|
|
<RootNamespace>Remotely.Server</RootNamespace>
|
|
<AssemblyName>Remotely_Server</AssemblyName>
|
|
<UserSecretsId>36e32491-91a5-42e6-a466-819233f0c593</UserSecretsId>
|
|
<ApplicationIcon>wwwroot\favicon.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Areas\Identity\Services\**" />
|
|
<Compile Remove="wwwroot\scripts\**" />
|
|
<Content Remove="Areas\Identity\Services\**" />
|
|
<Content Remove="wwwroot\scripts\**" />
|
|
<EmbeddedResource Remove="Areas\Identity\Services\**" />
|
|
<EmbeddedResource Remove="wwwroot\scripts\**" />
|
|
<None Remove="Areas\Identity\Services\**" />
|
|
<None Remove="wwwroot\scripts\**" />
|
|
<TypeScriptCompile Remove="node_modules\**" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="5.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="5.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="5.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.EventLog" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="4.1.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.1" PrivateAssets="All" />
|
|
<PackageReference Include="NETStandard.Library" Version="2.0.3" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="5.0.1" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
|
|
<PackageReference Include="System.Drawing.Common" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<None Include="wwwroot\lib\msgpack\msgpack.js" />
|
|
<None Include="wwwroot\lib\msgpack\msgpack.js.map" />
|
|
<None Include="wwwroot\lib\msgpack\msgpack.min.js" />
|
|
<None Include="wwwroot\lib\msgpack\msgpack.min.js.map" />
|
|
<None Include="wwwroot\lib\fontawesome\webfonts\fa-brands-400.svg" />
|
|
<None Include="wwwroot\lib\fontawesome\webfonts\fa-brands-400.woff2" />
|
|
<None Include="wwwroot\lib\fontawesome\webfonts\fa-regular-400.svg" />
|
|
<None Include="wwwroot\lib\fontawesome\webfonts\fa-regular-400.woff2" />
|
|
<None Include="wwwroot\lib\fontawesome\webfonts\fa-solid-900.svg" />
|
|
<None Include="wwwroot\lib\fontawesome\webfonts\fa-solid-900.woff2" />
|
|
<None Include="wwwroot\lib\qr\LICENSE" />
|
|
<None Include="wwwroot\lib\qr\qrcode.js" />
|
|
<None Include="wwwroot\lib\qr\qrcode.min.js" />
|
|
<None Include="wwwroot\lib\signalr\signalr.js" />
|
|
<None Include="wwwroot\lib\signalr\signalr.js.map" />
|
|
<None Include="wwwroot\lib\signalr\signalr.min.js" />
|
|
<None Include="wwwroot\lib\signalr\signalr.min.js.map" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Content Update="Pages\Shared\_Layout.cshtml">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
<Pack>$(IncludeRazorContentInPack)</Pack>
|
|
</Content>
|
|
<Content Update="wwwroot\images\Remotely_Logo.png">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Migrations\PostgreSql\" />
|
|
<Folder Include="Migrations\Sqlite\" />
|
|
<Folder Include="Properties\" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Shared\Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|