-
Notifications
You must be signed in to change notification settings - Fork 76
/
Demo.App.csproj
30 lines (23 loc) · 1.18 KB
/
Demo.App.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>Demo</RootNamespace>
<OutputType>Exe</OutputType>
<StartupObject>Demo.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\Shared.cs" Link="Shared.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="$(MicrosoftCodeAnalysisCommonVersion)" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="$(MicrosoftExtensionsHostingVersion)" />
<PackageReference Include="Microsoft.Orleans.Server" Version="$(MicrosoftOrleansServerVersion)" />
<PackageReference Include="Microsoft.Orleans.Streaming" Version="$(MicrosoftOrleansStreamingVersion)" />
<PackageReference Include="WindowsAzure.Storage" Version="$(WindowsAzureStorageVersion)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\Source\Orleankka.Client\Orleankka.Client.csproj" />
<ProjectReference Include="..\..\..\..\Source\Orleankka\Orleankka.csproj" />
<ProjectReference Include="..\..\..\..\Source\Orleankka.Runtime\Orleankka.Runtime.csproj" />
</ItemGroup>
</Project>