-
-
Notifications
You must be signed in to change notification settings - Fork 294
Expand file tree
/
Copy pathMemoryPack.UnityShims.csproj
More file actions
26 lines (22 loc) · 996 Bytes
/
MemoryPack.UnityShims.csproj
File metadata and controls
26 lines (22 loc) · 996 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
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;netstandard2.1</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<RootNamespace>UnityEngine</RootNamespace>
<NoWarn>$(NoWarn);CS1591;CA2255</NoWarn>
<PackageTags>serializer</PackageTags>
<Description>Unity shims(Vector3, Color, etc) of MemoryPack.</Description>
</PropertyGroup>
<ItemGroup>
<None Include="../../Icon.png" Pack="true" PackagePath="/" />
</ItemGroup>
<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>