forked from mkaring/ConfuserEx
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathConfuser.CLI.csproj
More file actions
40 lines (32 loc) · 1.7 KB
/
Copy pathConfuser.CLI.csproj
File metadata and controls
40 lines (32 loc) · 1.7 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
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\ConfuserEx.Common.props" Condition="Exists('..\ConfuserEx.Common.props')" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\ConfuserEx.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Label="Assembly Information">
<Title>ConfuserEx Command-line</Title>
<Description>Command-line interface of ConfuserEx</Description>
</PropertyGroup>
<ItemGroup Label="Nuget Dependencies">
<PackageReference Include="NDesk.Options.Core" Version="1.2.5" />
<PackageReference Include="Serilog" Version="4.*" />
<PackageReference Include="Serilog.Extensions.Logging" Version="9.*" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.*" />
</ItemGroup>
<ItemGroup Label="Project Dependencies">
<ProjectReference Include="..\Confuser.Core\Confuser.Core.csproj" />
<ProjectReference Include="..\Confuser.Protections\Confuser.Protections.csproj" />
<ProjectReference Include="..\Confuser.Renamer\Confuser.Renamer.csproj" />
</ItemGroup>
<!-- Copy Confuser.Runtime.dll (net20) to output — needed by protection pipeline at runtime -->
<Target Name="CopyConfuserRuntime" AfterTargets="Build">
<Copy SourceFiles="..\Confuser.Runtime\bin\$(Configuration)\net20\Confuser.Runtime.dll"
DestinationFolder="$(OutputPath)"
SkipUnchangedFiles="true"
Condition="Exists('..\Confuser.Runtime\bin\$(Configuration)\net20\Confuser.Runtime.dll')" />
</Target>
<Import Project="..\ConfuserEx.Common.targets" Condition="Exists('..\ConfuserEx.Common.targets')" />
</Project>