forked from SpecterOps/SharpHound
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up libs, add fody, make a bunch more changes
- Loading branch information
Showing
30 changed files
with
2,094 additions
and
2,549 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd"> | ||
<Costura /> | ||
<Costura/> | ||
</Weavers> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,47 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net462</TargetFramework> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net462</TargetFramework> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="src\JSON\**" /> | ||
<Compile Remove="src\LdapWrappers\**" /> | ||
<Compile Remove="src\Tasks\**" /> | ||
<EmbeddedResource Remove="src\JSON\**" /> | ||
<EmbeddedResource Remove="src\LdapWrappers\**" /> | ||
<EmbeddedResource Remove="src\Tasks\**" /> | ||
<None Remove="src\JSON\**" /> | ||
<None Remove="src\LdapWrappers\**" /> | ||
<None Remove="src\Tasks\**" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Remove="src\JSON\**" /> | ||
<Compile Remove="src\LdapWrappers\**" /> | ||
<Compile Remove="src\Tasks\**" /> | ||
<EmbeddedResource Remove="src\JSON\**" /> | ||
<EmbeddedResource Remove="src\LdapWrappers\**" /> | ||
<EmbeddedResource Remove="src\Tasks\**" /> | ||
<None Remove="src\JSON\**" /> | ||
<None Remove="src\LdapWrappers\**" /> | ||
<None Remove="src\Tasks\**" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="src\Core\Enums.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Remove="src\Core\Enums.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="DnsClient" Version="1.5.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0-preview.7.21377.19" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0-preview.7.21377.19" /> | ||
<PackageReference Include="SharpHoundCommon" Version="1.0.10" /> | ||
<PackageReference Include="SharpZipLib" Version="1.3.2" /> | ||
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21308.1" /> | ||
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.3.0-alpha.21216.1" /> | ||
<PackageReference Include="System.Threading.Channels" Version="5.0.0" /> | ||
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="5.0.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Costura.Fody" Version="4.1.0" /> | ||
<PackageReference Include="Fody" Version="6.5.5"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" /> | ||
<!-- <PackageReference Include="SharpHoundCommon" Version="1.0.16" />--> | ||
<PackageReference Include="System.Threading.Channels" Version="5.0.0" /> | ||
<PackageReference Include="Utf8Json" Version="1.3.7" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="System.DirectoryServices.Protocols" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Reference Include="SharpHoundCommonLib, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null"> | ||
<HintPath>..\SharpHoundCommon\src\CommonLib\bin\Debug\net462\SharpHoundCommonLib.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System.DirectoryServices" /> | ||
<Reference Include="System.DirectoryServices.Protocols" /> | ||
<Reference Include="System.IO.Compression" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.