-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathFluxzy.Core.csproj
More file actions
79 lines (66 loc) · 2.66 KB
/
Fluxzy.Core.csproj
File metadata and controls
79 lines (66 loc) · 2.66 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Leave the following tag blank for Directory.Props-->
<TargetFramework></TargetFramework>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<RootNamespace>Fluxzy</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Description>MITM engine for recording, analyzing, debugging, and altering HTTP/1.1, H2, WebSocket traffic.</Description>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://www.fluxzy.io</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/haga-rak/fluxzy.core</RepositoryUrl>
<PackageTags>mitm;http;https;proxy;sock5</PackageTags>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>1701;1702;CA1416</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Clients\Ssl\BouncyCastle\Streams\**" />
<EmbeddedResource Remove="Clients\Ssl\BouncyCastle\Streams\**" />
<None Remove="Clients\Ssl\BouncyCastle\Streams\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\Pages\error.html" />
<None Remove="Resources\Pages\welcome.html" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE.md" Pack="true" PackagePath="LICENSE.md" />
<None Include="README.md" Pack="True" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Pages\error.html" />
<EmbeddedResource Include="Resources\Pages\welcome.html" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fluxzy.BouncyCastle.Crypto.Async" Version="2.6.0" />
<PackageReference Include="MessagePack" Version="2.5.198" />
<PackageReference Include="SharpZipLib" Version="1.4.2" />
<PackageReference Include="YamlDotNet" Version="13.7.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="System.IO.Pipelines" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Update="FileStore.Designer.cs">
<DependentUpon>FileStore.resx</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="FileStore.resx">
<LastGenOutput>FileStore.Designer.cs</LastGenOutput>
<Generator>ResXFileCodeGenerator</Generator>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Update="Nerdbank.GitVersioning" Version="3.9.50" />
</ItemGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>