-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathReentrant.csproj
30 lines (23 loc) · 1.02 KB
/
Reentrant.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Example</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<ApplicationIcon />
<OutputType>Exe</OutputType>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Shared.cs" Link="Shared.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Orleans.Server" Version="$(MicrosoftOrleansServerVersion)" />
<PackageReference Include="Microsoft.Orleans.Streaming" Version="$(MicrosoftOrleansStreamingVersion)" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="$(MicrosoftExtensionsHostingVersion)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Source\Orleankka.Client\Orleankka.Client.csproj" />
<ProjectReference Include="..\..\..\Source\Orleankka.Runtime\Orleankka.Runtime.csproj" />
<ProjectReference Include="..\..\..\Source\Orleankka\Orleankka.csproj" />
</ItemGroup>
</Project>