mirror of https://github.com/dapr/dotnet-sdk.git
35 lines
1.9 KiB
XML
35 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" />
|
|
<PackageReference Include="Grpc.Net.ClientFactory" />
|
|
<PackageReference Include="Grpc.Tools" PrivateAssets="All" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
<PackageReference Include="Shouldly"/>
|
|
<PackageReference Include="xunit" />
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Dapr.Actors\Dapr.Actors.csproj" />
|
|
<ProjectReference Include="..\..\src\Dapr.Cryptography\Dapr.Cryptography.csproj" />
|
|
<ProjectReference Include="..\..\src\Dapr.Workflow\Dapr.Workflow.csproj" />
|
|
<ProjectReference Include="..\..\src\Dapr.Extensions.Configuration\Dapr.Extensions.Configuration.csproj" />
|
|
<ProjectReference Include="..\Dapr.E2E.Test.Actors\Dapr.E2E.Test.Actors.csproj" />
|
|
<!-- This is here to force a rebuild when we run the tests. The tests assume this project has already been built. -->
|
|
<ProjectReference Include="..\Dapr.E2E.Test.App\Dapr.E2E.Test.App.csproj" ReferenceOutputAssembly="false" />
|
|
<ProjectReference Include="..\Dapr.E2E.Test.App.ReentrantActor\Dapr.E2E.Test.App.ReentrantActors.csproj" ReferenceOutputAssembly="false" />
|
|
<ProjectReference Include="..\Dapr.E2E.Test.App.Grpc\Dapr.E2E.Test.App.Grpc.csproj" ReferenceOutputAssembly="false" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Protobuf Include="../Dapr.E2E.Test.App.Grpc/Proto/message.proto" GrpcServices="Client" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Remove="keys\rsa-private-key.pem" />
|
|
<Content Include="keys\rsa-private-key.pem">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|