-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPostHog.Unity.Format.csproj
More file actions
28 lines (25 loc) · 993 Bytes
/
PostHog.Unity.Format.csproj
File metadata and controls
28 lines (25 loc) · 993 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
27
28
<Project Sdk="Microsoft.NET.Sdk">
<!--
This project exists solely for running 'dotnet format' to apply code style rules
from .editorconfig (like file-scoped namespaces). It is not meant to be built.
-->
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>disable</Nullable>
<IsPackable>false</IsPackable>
<!-- Disable default compile items to avoid duplicates -->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
<!-- Include all Unity package source files -->
<ItemGroup>
<Compile Include="com.posthog.unity/**/*.cs" />
</ItemGroup>
<!-- Unity stub assemblies for type resolution -->
<ItemGroup>
<PackageReference Include="Unity3D.SDK" Version="2021.1.14.1" />
</ItemGroup>
<PropertyGroup>
<!-- Suppress framework compatibility warning for Unity stubs -->
<NoWarn>NU1701</NoWarn>
</PropertyGroup>
</Project>