mirror of
https://github.com/andreacristaldi/DefenderRuleParser
synced 2026-06-16 13:55:00 +00:00
93 lines
4.3 KiB
XML
93 lines
4.3 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>{68264A8E-C110-4819-9253-B3BC0BD9BB9D}</ProjectGuid>
|
|
<OutputType>Exe</OutputType>
|
|
<RootNamespace>DefenderRuleParser2</RootNamespace>
|
|
<AssemblyName>DefenderRuleParser2</AssemblyName>
|
|
<TargetFrameworkVersion>v4.7.2</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>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Web.Extensions" />
|
|
<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>
|
|
<None Include="Exporter.csx" />
|
|
<None Include="HtmlExporter.csx" />
|
|
<Compile Include="Logger.cs" />
|
|
<Compile Include="Parsers\AsepFilepathParser.cs" />
|
|
<Compile Include="Parsers\AsepFoldernameParser.cs" />
|
|
<Compile Include="Parsers\GenericBinarySignatureParser.cs" />
|
|
<Compile Include="Parsers\DefaultsParser.cs" />
|
|
<Compile Include="Parsers\FilePathParser.cs" />
|
|
<Compile Include="Parsers\FolderNameParser.cs" />
|
|
<Compile Include="Parsers\FriendlyFileSha256Parser.cs" />
|
|
<Compile Include="Parsers\GenericFixedHashListParser.cs" />
|
|
<Compile Include="Parsers\GenericWeightedPatternParser.cs" />
|
|
<Compile Include="ISignatureParser.cs" />
|
|
<Compile Include="Parsers\GenericTextDumpParser.cs" />
|
|
<Compile Include="Parsers\KcrceParser.cs" />
|
|
<Compile Include="Parsers\KcrceexParser.cs" />
|
|
<Compile Include="Parsers\LuaParser.cs" />
|
|
<Compile Include="Parsers\NdatParser.cs" />
|
|
<Compile Include="Parsers\NscriptCureParser.cs" />
|
|
<Compile Include="Parsers\NscriptSpParser.cs" />
|
|
<Compile Include="Parsers\PeHstrParser.cs" />
|
|
<Compile Include="Parsers\PepCodeParser.cs" />
|
|
<Compile Include="Parsers\PestaticExParser.cs" />
|
|
<Compile Include="Parsers\PestaticParser.cs" />
|
|
<Compile Include="Parsers\Polyvir32Parser.cs" />
|
|
<Compile Include="Parsers\PuaAppMapParser.cs" />
|
|
<Compile Include="Parsers\SigTreeBmParser.cs" />
|
|
<Compile Include="Parsers\SigTreeExtParser.cs" />
|
|
<Compile Include="Parsers\SigTreeParser.cs" />
|
|
<Compile Include="Parsers\StaticHashParser.cs" />
|
|
<Compile Include="Parsers\Wildcards\WildcardPattern.cs" />
|
|
<Compile Include="Program.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Parsers\RegKeyParser.cs" />
|
|
<Compile Include="SignatureDispatcher.cs" />
|
|
<Compile Include="SignatureReader.cs" />
|
|
<Compile Include="SignatureTypeMapper.cs" />
|
|
<Compile Include="Models\Threat.cs" />
|
|
<Compile Include="ThreatDatabase.cs" />
|
|
<None Include="YaraExporter.csx" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="App.config" />
|
|
</ItemGroup>
|
|
<ItemGroup />
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project> |