-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathStreamstone.csproj
29 lines (24 loc) · 1.1 KB
/
Streamstone.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Example</RootNamespace>
<AssemblyName>Example.EventSourcing.Streamstone</AssemblyName>
<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)" />
<PackageReference Include="Streamstone" Version="$(StreamstoneVersion)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\Source\Orleankka.Client\Orleankka.Client.csproj" />
<ProjectReference Include="..\..\..\..\..\Source\Orleankka.Runtime\Orleankka.Runtime.csproj" />
</ItemGroup>
</Project>