mirror of https://github.com/dapr/dotnet-sdk.git
21 lines
737 B
XML
21 lines
737 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<IsPublishable>true</IsPublishable>
|
|
<EnableSdkContainerSupport>true</EnableSdkContainerSupport>
|
|
<ContainerRepository>demo-actor</ContainerRepository>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ContainerEnvironmentVariable Include="ASPNETCORE_URLS" Value="http://+:8080" />
|
|
<ContainerPort Include="8080" Type="tcp" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\src\Dapr.Actors.AspNetCore\Dapr.Actors.AspNetCore.csproj" />
|
|
<ProjectReference Include="..\..\..\src\Dapr.Actors\Dapr.Actors.csproj" />
|
|
<ProjectReference Include="..\IDemoActor\IDemoActor.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|