-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathExampleProject.csproj
More file actions
30 lines (28 loc) · 1.26 KB
/
ExampleProject.csproj
File metadata and controls
30 lines (28 loc) · 1.26 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AssemblyName>ExampleProject</AssemblyName>
<RuntimeIdentifiers>win</RuntimeIdentifiers>
<OutputType>Exe</OutputType>
<Company>Lokad</Company>
<Copyright>Copyright © Lokad 2020</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<PackageVersion>1.0.0.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MessagePack" Version="2.5.187" />
<PackageReference Include="MessagePack.ImmutableCollection" Version="2.5.187" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.13.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<!-- When developing locally, comment out this block and uncomment the one below it. -->
<ItemGroup>
<PackageReference Include="Lokad.AzureEventStore" Version="13.0.1" />
<PackageReference Include="Lokad.AzureEventStore.Cache" Version="2.2.0" />
</ItemGroup>
<!--<ItemGroup>
<ProjectReference Include="..\Lokad.AzureEventStore.Cache\Lokad.AzureEventStore.Cache.csproj" />
<ProjectReference Include="..\Lokad.AzureEventStore\Lokad.AzureEventStore.csproj" />
</ItemGroup>-->
</Project>