-
-
Notifications
You must be signed in to change notification settings - Fork 294
Expand file tree
/
Copy pathMemoryPack.UnityShims.csproj
More file actions
25 lines (21 loc) · 952 Bytes
/
MemoryPack.UnityShims.csproj
File metadata and controls
25 lines (21 loc) · 952 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0;net8.0;netstandard2.1</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<RootNamespace>UnityEngine</RootNamespace>
<NoWarn>$(NoWarn);CS1591;CA2255</NoWarn>
<!-- NuGet -->
<IsPackable>true</IsPackable>
<PackageTags>serializer</PackageTags>
<Description>Unity shims(Vector3, Color, etc) of MemoryPack.</Description>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\MemoryPack.Core\MemoryPack.Core.csproj" />
<ProjectReference Include="..\..\src\MemoryPack.Generator\MemoryPack.Generator.csproj">
<OutputItemType>Analyzer</OutputItemType>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
</Project>