-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrimitiveCodebaseElements.csproj
More file actions
34 lines (29 loc) · 1.22 KB
/
PrimitiveCodebaseElements.csproj
File metadata and controls
34 lines (29 loc) · 1.22 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<!-- The version is overridden by the bitbucket pipeline -->
<Version>1.0.0</Version>
<Authors>Primitive.io team</Authors>
<Company>Primitive.io</Company>
<Product />
<Nullable>enable</Nullable>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- Unity still requires .netstandard2.1. This will change in a future release -->
<TargetFrameworks>netstandard2.1;net9.0</TargetFrameworks>
<LangVersion>9</LangVersion>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Tests\**" />
<EmbeddedResource Remove="Tests\**" />
<None Remove="Tests\**" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="PrimitiveLogger" Version="0.4.4" />
</ItemGroup>
<PropertyGroup>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
</Project>