-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMSBuildUnityPostProcessor.csproj
More file actions
28 lines (23 loc) · 1.06 KB
/
MSBuildUnityPostProcessor.csproj
File metadata and controls
28 lines (23 loc) · 1.06 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>MrWatts.MSBuild.UnityPostProcessor</RootNamespace>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<OutputType>Library</OutputType>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>MrWatts.MSBuild.UnityPostProcessor</PackageId>
<Version>1.2.2</Version>
<Authors>Mr. Watts</Authors>
<Company>Mr. Watts</Company>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.4.0" PrivateAssets="All" />
<PackageReference Include="MrWatts.CodeAnalysisRulesets" Version="3.0.0" PrivateAssets="All" GeneratePathProperty="true" />
</ItemGroup>
<PropertyGroup>
<CodeAnalysisRuleSet>$(PkgMrWatts_CodeAnalysisRulesets)/Code Analysis Rulesets/CSharp/Ruleset.xml</CodeAnalysisRuleSet>
</PropertyGroup>
</Project>