mirror of https://github.com/dapr/dotnet-sdk.git
				
				
				
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			793 B
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			793 B
		
	
	
	
		
			XML
		
	
	
	
| <Project Sdk="Microsoft.NET.Sdk.Web">
 | |
| 
 | |
|     <PropertyGroup>
 | |
|         <IsPublishable>true</IsPublishable>
 | |
|         <EnableSdkContainerSupport>true</EnableSdkContainerSupport>
 | |
|         <ContainerRepository>demo-actor</ContainerRepository>
 | |
|         <Nullable>enable</Nullable>
 | |
|     </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="..\DemoActor.Interfaces\DemoActor.Interfaces.csproj" />
 | |
|     </ItemGroup>
 | |
| 
 | |
| </Project>
 |