-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fiewport.fsproj
43 lines (39 loc) · 1.93 KB
/
Fiewport.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.1.1</Version>
<Authors>jmhickman</Authors>
<Description>Library for Active Directory enumeration</Description>
<Copyright>2024</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/jmhickman/Fiewport</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<Content Include="LICENSE" />
<Compile Include="src\Types.fs" />
<Compile Include="src\FileOperations.fs" />
<Compile Include="src\LDAPConstants.fs" />
<Compile Include="src\LDAPDataHandlers.fs" />
<Compile Include="src\LDAPUtils.fs" />
<Compile Include="src\Mold.fs" />
<Compile Include="src\Filter.fs" />
<Compile Include="src\Tee.fs" />
<Compile Include="src\PrettyPrinter.fs" />
<Compile Include="src\Searcher.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EluciusFTW.SpectreCoff" Version="0.49.12" />
<PackageReference Include="MessagePack" Version="3.1.0" />
<PackageReference Include="MessagePack.FSharpExtensions" Version="4.0.0" />
<PackageReference Include="Spectre.Console" Version="0.49.1" />
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="9.0.0" />
<PackageReference Include="System.DirectoryServices.Protocols" Version="9.0.0" />
<PackageReference Include="System.IO" Version="4.3.0" />
<PackageReference Include="System.Security.AccessControl" Version="6.0.0" />
</ItemGroup>
</Project>