mirror of https://github.com/dotnet/tye.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.8 KiB
43 lines
1.8 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<Description>Orchestration host APIs.</Description>
|
|
<AssemblyName>Microsoft.Tye.Hosting</AssemblyName>
|
|
<PackageId>Microsoft.Tye.Hosting</PackageId>
|
|
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
|
|
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="wwwroot\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Watch\assets\**\*" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Bedrock.Framework" Version="0.1.38-alpha.gd25d5b37ad" />
|
|
<PackageReference Include="FeatherHttp" Version="0.1.42-alpha.gf06a8747e7" />
|
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="3.1.0" />
|
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="3.0.0" />
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
|
|
<PackageReference Include="System.IO.Pipelines" Version="4.7.0" />
|
|
<PackageReference Include="System.Reactive" Version="4.3.2" />
|
|
<PackageReference Include="YamlDotNet" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Tye.Hosting.Diagnostics\Microsoft.Tye.Hosting.Diagnostics.csproj" />
|
|
<ProjectReference Include="..\Microsoft.Tye.Core\Microsoft.Tye.Core.csproj" />
|
|
<ProjectReference Include="..\Microsoft.Tye.Hosting.Runtime\Microsoft.Tye.Hosting.Runtime.csproj" />
|
|
<ProjectReference Include="..\Microsoft.Tye.Proxy\Microsoft.Tye.Proxy.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\shared\DirectoryExtensions.cs" Link="DirectoryExtensions.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|