-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathPersistAssist.csproj
116 lines (116 loc) · 5.95 KB
/
PersistAssist.csproj
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?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>{9CD39515-FF4B-445C-BDD2-E01BF4BE6A6E}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>PersistAssist</RootNamespace>
<AssemblyName>PersistAssist</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</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="Microsoft.Win32.TaskScheduler, Version=2.10.1.0, Culture=neutral, PublicKeyToken=e25603a88b3aa7da, processorArchitecture=MSIL">
<HintPath>packages\TaskScheduler.2.10.1\lib\net40\Microsoft.Win32.TaskScheduler.dll</HintPath>
</Reference>
<Reference Include="Mono.Options, Version=6.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\Mono.Options.6.12.0.148\lib\net40\Mono.Options.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Management" />
<Reference Include="System.ServiceProcess" />
<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="Modules\Payloads\HelloWorld.cs" />
<Compile Include="Modules\Payloads\MsgBox.cs" />
<Compile Include="Modules\Payloads\PopCalc.cs" />
<Compile Include="Modules\Payloads\PopCalcAPI.cs" />
<Compile Include="Modules\Persist\Misc\PsProfiles.cs" />
<Compile Include="Modules\Persist\Misc\StartupFolder.cs" />
<Compile Include="Modules\Persist\MSBuild\InlineTasks.cs" />
<Compile Include="Modules\Persist\MSBuild\OverrideTasks.cs" />
<Compile Include="Modules\Persist\Registry\GenericRegAdd.cs" />
<Compile Include="Modules\Persist\Registry\RunKeys.cs" />
<Compile Include="Modules\Tradecraft\Compile.cs" />
<Compile Include="Modules\Tradecraft\Creds.cs" />
<Compile Include="Modules\Tradecraft\FileRead.cs" />
<Compile Include="Modules\Tradecraft\NetList.cs" />
<Compile Include="Modules\Tradecraft\ProcList.cs" />
<Compile Include="Modules\Tradecraft\RegList.cs" />
<Compile Include="Modules\Tradecraft\SchList.cs" />
<Compile Include="Modules\Tradecraft\SvcList.cs" />
<Compile Include="Modules\Tradecraft\Timestomp.cs" />
<Compile Include="Models\Abstracts\Payloads.cs" />
<Compile Include="Models\Abstracts\Persist.cs" />
<Compile Include="Models\Abstracts\Tradecraft.cs" />
<Compile Include="Models\Abstracts\Utility.cs" />
<Compile Include="Models\Data\Data.cs" />
<Compile Include="Models\Data\ParsedArgs.cs" />
<Compile Include="Models\Exceptions\Exceptions.cs" />
<Compile Include="Modules\Tradecraft\WMIQuery.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utils\Extensions\API.cs" />
<Compile Include="Utils\Extensions\Extensions.cs" />
<Compile Include="Utils\Extensions\Structs.cs" />
<Compile Include="Utils\PersistOps\MSBuildOps.cs" />
<Compile Include="Utils\PersistOps\RegistryOps.cs" />
<Compile Include="Utils\PersistOps\SchTaskOps.cs" />
<Compile Include="Utils\PersistOps\ServiceOps.cs" />
<Compile Include="Utils\PersistOps\WMIOps.cs" />
<Compile Include="Utils\Tradecraft\Compiler.cs" />
<Compile Include="Utils\Tradecraft\Creds.cs" />
<Compile Include="Utils\Tradecraft\Network.cs" />
<Compile Include="Utils\Tradecraft\Procs.cs" />
<Compile Include="Utils\Tradecraft\TimeStomp.cs" />
<Compile Include="Utils\UI\UI.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Folder Include="Modules\Persist\AccountOps\" />
<Folder Include="Modules\Persist\WMI\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="packages\dnMerge.0.5.15\build\dnMerge.targets" Condition="Exists('packages\dnMerge.0.5.15\build\dnMerge.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('packages\dnMerge.0.5.15\build\dnMerge.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\dnMerge.0.5.15\build\dnMerge.targets'))" />
</Target>
</Project>