-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCG.Target.Native.csproj
More file actions
33 lines (28 loc) · 1.16 KB
/
CG.Target.Native.csproj
File metadata and controls
33 lines (28 loc) · 1.16 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>Native</AssemblyName>
<RootNamespace>CG.Memory</RootNamespace>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<FileVersion>1.0.1.0</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>latest</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\Target\" /F /Y /I"/>
</Target>
</Project>