/
qwiklly
/
arc-server
Обзор
Документация
Войти
/
qwiklly
/
arc-server
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
src/AppRemoteConfig/AppRemoteConfig.csproj
41 строка
2 KB
Nikolai
Fix error when 'wwwroot' directory was not available
19 дек 2024, 22:38
19 дек 2024, 22:38
2aae6f6
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net8.0</TargetFramework> <Nullable>enable</Nullable> <IsPackable>true</IsPackable> <ImplicitUsings>enable</ImplicitUsings> <RuntimeIdentifiers>linux-x64</RuntimeIdentifiers> <PackageId>Kaleidoscope.AspNetCore.AppRemoteConfig</PackageId> <Version>0.1.0</Version> <Title>App Remoting Config</Title> <Authors>CLTanuki</Authors> <RepositoryUrl>https://git.failover.bar/open-source/app-remote-control/arc-server</RepositoryUrl> <RepositoryType>git</RepositoryType> </PropertyGroup> <ItemGroup> <FrameworkReference Include="Microsoft.AspNetCore.App" /> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" /> <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.0" /> <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" /> </ItemGroup> <ItemGroup> <Folder Include="Migrations\" /> <EmbeddedResource Include="wwwroot\**" /> <Folder Include="wwwroot\**" Pack="true" PackagePath="content/" /> </ItemGroup> <ItemGroup> <SupportedPlatform Include="browser" /> </ItemGroup> <!--Target Name="PostBuild" AfterTargets="PostBuildEvent"> <Exec Command="dotnet tool restore" /> <Exec Command="dotnet swagger tofile - -output ../../docs/swagger.json $(OutputPath)$(AssemblyName).dll v0" /> </Target--> </Project>