-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCG.Output.UnityCSharp.csproj
More file actions
32 lines (26 loc) · 1.07 KB
/
CG.Output.UnityCSharp.csproj
File metadata and controls
32 lines (26 loc) · 1.07 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>UnityCSharp</AssemblyName>
<RootNamespace>CG.Output</RootNamespace>
<Nullable>enable</Nullable>
<LangVersion>default</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitignore"/>
<None Remove="LICENSE"/>
<None Remove="README.md"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\SDK\CG.SDK.Dotnet\CG.SDK.Dotnet.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Meziantou.Analyzer" Version="2.0.149">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(Configuration)' == 'Debug'">
<Exec Command="xcopy "$(TargetPath)" "$(SolutionDir)build\Plugins\Output\" /F /Y /I"/>
</Target>
</Project>