forked from ReClassNET/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReClass.NET.csproj
More file actions
126 lines (115 loc) · 5.33 KB
/
ReClass.NET.csproj
File metadata and controls
126 lines (115 loc) · 5.33 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
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
117
118
119
120
121
122
123
124
125
126
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-windows10.0.20348.0</TargetFramework>
<OutputType>WinExe</OutputType>
<RootNamespace>ReClassNET</RootNamespace>
<AssemblyName>ReClass.NET</AssemblyName>
<UseWindowsForms>true</UseWindowsForms>
<LangVersion>latest</LangVersion>
<Platforms>x86;x64</Platforms>
<ApplicationIcon>Resources\Icon\ReClassNet.ico</ApplicationIcon>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<AppConfig>App.config</AppConfig>
<EnableWindowsFormsAnalyzer>false</EnableWindowsFormsAnalyzer>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>$(SolutionDir)bin\Debug\x86\</OutputPath>
<IntermediateOutputPath>$(SolutionDir)obj\$(Configuration)\x86\$(MSBuildProjectName)\</IntermediateOutputPath>
<DefineConstants>$(DefineConstants)</DefineConstants>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>$(SolutionDir)bin\Release\x86\</OutputPath>
<IntermediateOutputPath>$(SolutionDir)obj\$(Configuration)\x86\$(MSBuildProjectName)\</IntermediateOutputPath>
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PlatformTarget>x64</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>$(SolutionDir)bin\Debug\x64\</OutputPath>
<IntermediateOutputPath>$(SolutionDir)obj\$(Configuration)\x64\$(MSBuildProjectName)\</IntermediateOutputPath>
<DefineConstants>$(DefineConstants);RECLASSNET64</DefineConstants>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<PlatformTarget>x64</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>$(SolutionDir)bin\Release\x64\</OutputPath>
<IntermediateOutputPath>$(SolutionDir)obj\$(Configuration)\x64\$(MSBuildProjectName)\</IntermediateOutputPath>
<DefineConstants>$(DefineConstants);RECLASSNET64;RELEASE</DefineConstants>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="ColorCode">
<HintPath>..\Dependencies\ColorCode.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
<Reference Include="Dia2Lib">
<HintPath>..\Dependencies\Dia2Lib.dll</HintPath>
<EmbedInteropTypes>true</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.ExceptionMessageBox">
<HintPath>..\Dependencies\Microsoft.ExceptionMessageBox.dll</HintPath>
<SpecificVersion>false</SpecificVersion>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Remove="Nodes\FunctionNode.Tokenizer.cs" />
<Compile Remove="Nodes\ClassInstanceArrayNode.cs" />
<Compile Remove="Forms\ProcessMemoryViewForm.cs" />
<Compile Remove="Forms\ProcessMemoryViewForm.Designer.cs" />
<EmbeddedResource Remove="Forms\ProcessMemoryViewForm.resx" />
<Compile Remove="AddressParser\AstBuilder.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(Platform)'=='x86'">
<Content Include="..\\Dependencies\\x86\\symsrv.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition="'$(Platform)'=='x64'">
<Content Include="..\\Dependencies\\x64\\symsrv.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<Target Name="BeforeBuild">
<MakeDir Directories="$(ProjectDir)Resources" />
<Exec Condition=" '$(OS)' == 'Windows_NT' " Command="powershell -Command "((Get-Date).ToUniversalTime()).ToString(\"yyyy/MM/dd HH:mm:ss\") | Out-File '$(ProjectDir)Resources\BuildDate.txt'"" />
<Exec Condition=" '$(OS)' != 'Windows_NT' " Command="date +"%Y/%m/%d %H:%M:%S" > $(ProjectDir)/Resources/BuildDate.txt" />
</Target>
</Project>