-
-
Notifications
You must be signed in to change notification settings - Fork 295
Expand file tree
/
Copy pathSandboxConsoleApp.csproj
More file actions
42 lines (35 loc) · 1.63 KB
/
SandboxConsoleApp.csproj
File metadata and controls
42 lines (35 loc) · 1.63 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
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- <PublishAot>true</PublishAot> -->
</PropertyGroup>
<ItemGroup>
<Compile Remove="MemoryPackLogs\**" />
<EmbeddedResource Remove="MemoryPackLogs\**" />
<None Remove="MemoryPackLogs\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ConsoleAppFramework" Version="4.2.3" />
<PackageReference Include="MessagePack" Version="2.4.35" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="System.IO.Pipelines" Version="6.0.3" />
</ItemGroup>
<!-- output memoerypack serialization info to directory -->
<ItemGroup>
<CompilerVisibleProperty Include="MemoryPackGenerator_SerializationInfoOutputDirectory" />
</ItemGroup>
<PropertyGroup>
<MemoryPackGenerator_SerializationInfoOutputDirectory>$(MSBuildProjectDirectory)\MemoryPackLogs</MemoryPackGenerator_SerializationInfoOutputDirectory>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\MemoryPack.Core\MemoryPack.Core.csproj" />
<ProjectReference Include="..\..\src\MemoryPack.Generator\MemoryPack.Generator.csproj">
<OutputItemType>Analyzer</OutputItemType>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
<ProjectReference Include="..\..\src\MemoryPack.Streaming\MemoryPack.Streaming.csproj" />
</ItemGroup>
</Project>