-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathScubaDiver_NetFramework.csproj
100 lines (100 loc) · 4.57 KB
/
ScubaDiver_NetFramework.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
<?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>{8DF5D538-941D-44E8-803E-9E135926EBE8}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ScubaDiver</RootNamespace>
<AssemblyName>ScubaDiver_NetFramework</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DOT_NET_FRAMEWORK;DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>latest</LangVersion>
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>DOT_NET_FRAMEWORK;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\DotNetDiver.cs" />
<Compile Include="..\DiverBase.cs" />
<Compile Include="..\DllEntry.cs" />
<Compile Include="..\Hooking\HarmonyWrapper.cs" />
<Compile Include="..\Logger.cs" />
<Compile Include="..\Properties\AssemblyInfo.cs" />
<Compile Include="..\RegisteredEventHandlerInfo.cs" />
<Compile Include="..\RegisteredMethodHookInfo.cs" />
<Compile Include="..\Utils\ClrExt.cs" Link="Utils\ClrExt.cs" />
<Compile Include="..\Utils\Converter.cs" Link="Utils\Converter.cs" />
<Compile Include="..\Utils\FreezeFuncsFactory.cs" Link="Utils\FreezeFuncsFactory.cs" />
<Compile Include="..\Utils\FrozenObjectsCollection.cs" Link="Utils\FrozenObjectsCollection.cs" />
<Compile Include="..\Utils\ObjectDumpFactory.cs" Link="Utils\ObjectDumpFactory.cs" />
<Compile Include="..\Utils\Pinnable.cs" Link="Utils\Pinnable.cs" />
<Compile Include="..\Utils\SmartLocksDict.cs" Link="Utils\SmartLocksDict.cs" />
<Compile Include="..\Utils\TypesResolver.cs" Link="Utils\TypesResolver.cs" />
<Compile Include="..\Utils\UnifiedAppDomain.cs" Link="Utils\UnifiedAppDomain.cs" />
<Compile Include="..\HttpRequestsListener.cs" />
<Compile Include="..\IRequestsListener.cs" />
<Compile Include="..\ScubaDiverMessage.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\app.config" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Numerics" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Lib.Harmony">
<Version>2.3.3</Version>
</PackageReference>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces">
<Version>9.0.1</Version>
</PackageReference>
<PackageReference Include="Microsoft.Diagnostics.Runtime">
<Version>3.1.512801</Version>
</PackageReference>
<PackageReference Include="System.Runtime.CompilerServices.Unsafe">
<Version>6.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\ScubaDiver.API\ScubaDiver.API.csproj">
<Project>{0fe20420-27e2-467f-ab2d-78b6a795b255}</Project>
<Name>ScubaDiver.API</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="CopyOutputToDestination" AfterTargets="Build">
<ItemGroup>
<CopyOperations Include="$(TargetDir)\*">
<DestinationFolder>$(SolutionDir)dist\$(ConfigurationName)\ScubaDivers\$(ProjectName)\</DestinationFolder>
</CopyOperations>
</ItemGroup>
<Copy SourceFiles="@(CopyOperations)" DestinationFolder="%(CopyOperations.DestinationFolder)" />
</Target>
</Project>