BMTuneSource/BMFuscator/BMFuscator.csproj

102 lines
4.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{0FE687CD-6631-428E-A054-8039A20E6F6E}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>BMDevs</RootNamespace>
<AssemblyName>BMFuscator</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>lock_3x_XqK_icon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<StartupObject>BMDevs.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="dnlib, Version=1.5.0.1500, Culture=neutral, PublicKeyToken=50e96378b6e77999, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>libs\dnlib.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Protections\AntiDbg.cs" />
<Compile Include="Protections\AntiDe4dotProtection.cs" />
<Compile Include="Mutations\BoolsToModuleReference.cs" />
<Compile Include="Mutations\BytesToModuleReference.cs" />
<Compile Include="Protections\AntiILDasmProtection.cs" />
<Compile Include="Protections\ConstantsEncoding.cs" />
<Compile Include="Protections\ControlFlow\Block.cs" />
<Compile Include="Protections\ControlFlow\BlockParser.cs" />
<Compile Include="Protections\ControlFlow\ControlFlowObfuscation.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="Helpers\ReferenceProxyHelper.cs" />
<Compile Include="IObfuscation.cs" />
<Compile Include="Logger.cs" />
<Compile Include="Protections\JunkProtection.cs" />
<Compile Include="Protections\ModuleRenaming.cs" />
<Compile Include="Mutations\Funcs.cs" />
<Compile Include="Mutations\iMutation.cs" />
<Compile Include="Mutations\MutationObf.cs" />
<Compile Include="Mutations\NumbersToModuleReference.cs" />
<Compile Include="OwnRandom.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Protections\HiddenNamespace.cs" />
<Compile Include="Protections\ReferenceProxy.cs" />
<Compile Include="Protections\RenameObfuscation.cs" />
<Compile Include="Runtime\BoolsToModule.cs" />
<Compile Include="Runtime\Constants.cs" />
<Compile Include="Runtime\FuncMutation.cs" />
<Compile Include="Runtime\BytesToModule.cs" />
<Compile Include="Runtime\NumbersToModule.cs" />
<Compile Include="Runtime\RefProxy.cs" />
<Compile Include="Runtime\Renamer.cs" />
<Compile Include="Runtime\RuntimeHelper.cs" />
<Compile Include="Utils.cs" />
<Compile Include="Worker.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="FilesInfos.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="lock_3x_XqK_icon.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>