1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
3 |
<PropertyGroup> |
4 |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
5 |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
6 |
<ProductVersion>9.0.30729</ProductVersion> |
7 |
<SchemaVersion>2.0</SchemaVersion> |
8 |
<ProjectGuid>{825E4311-652D-4A1E-8AA1-F6D81B186E33}</ProjectGuid> |
9 |
<OutputType>WinExe</OutputType> |
10 |
<AppDesignerFolder>Properties</AppDesignerFolder> |
11 |
<RootNamespace>GSDumpGUI</RootNamespace> |
12 |
<AssemblyName>GSDumpGUI</AssemblyName> |
13 |
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion> |
14 |
<FileAlignment>512</FileAlignment> |
15 |
<ApplicationIcon>Resources\AppIcon.ico</ApplicationIcon> |
16 |
<FileUpgradeFlags> |
17 |
</FileUpgradeFlags> |
18 |
<UpgradeBackupLocation> |
19 |
</UpgradeBackupLocation> |
20 |
<OldToolsVersion>3.5</OldToolsVersion> |
21 |
</PropertyGroup> |
22 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
23 |
<DebugSymbols>true</DebugSymbols> |
24 |
<DebugType>full</DebugType> |
25 |
<Optimize>false</Optimize> |
26 |
<OutputPath>bin\Debug\</OutputPath> |
27 |
<DefineConstants>DEBUG;TRACE</DefineConstants> |
28 |
<ErrorReport>prompt</ErrorReport> |
29 |
<WarningLevel>4</WarningLevel> |
30 |
<PlatformTarget>x86</PlatformTarget> |
31 |
</PropertyGroup> |
32 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
33 |
<DebugType>pdbonly</DebugType> |
34 |
<Optimize>true</Optimize> |
35 |
<OutputPath>bin\Release\</OutputPath> |
36 |
<DefineConstants>TRACE</DefineConstants> |
37 |
<ErrorReport>prompt</ErrorReport> |
38 |
<WarningLevel>4</WarningLevel> |
39 |
<AllowUnsafeBlocks>false</AllowUnsafeBlocks> |
40 |
<PlatformTarget>x86</PlatformTarget> |
41 |
</PropertyGroup> |
42 |
<ItemGroup> |
43 |
<Reference Include="System" /> |
44 |
<Reference Include="System.Data" /> |
45 |
<Reference Include="System.Deployment" /> |
46 |
<Reference Include="System.Drawing" /> |
47 |
<Reference Include="System.Windows.Forms" /> |
48 |
<Reference Include="System.Xml" /> |
49 |
</ItemGroup> |
50 |
<ItemGroup> |
51 |
<Compile Include="Forms\frmMain.cs"> |
52 |
<SubType>Form</SubType> |
53 |
</Compile> |
54 |
<Compile Include="Forms\frmMain.Designer.cs"> |
55 |
<DependentUpon>frmMain.cs</DependentUpon> |
56 |
</Compile> |
57 |
<Compile Include="Library\GSDXWrapper.cs" /> |
58 |
<Compile Include="Library\NativeMethods.cs" /> |
59 |
<Compile Include="Core\Program.cs" /> |
60 |
<Compile Include="Properties\AssemblyInfo.cs" /> |
61 |
<EmbeddedResource Include="Forms\frmMain.resx"> |
62 |
<DependentUpon>frmMain.cs</DependentUpon> |
63 |
</EmbeddedResource> |
64 |
<EmbeddedResource Include="Properties\Resources.resx"> |
65 |
<Generator>ResXFileCodeGenerator</Generator> |
66 |
<LastGenOutput>Resources.Designer.cs</LastGenOutput> |
67 |
<SubType>Designer</SubType> |
68 |
</EmbeddedResource> |
69 |
<Compile Include="Properties\Resources.Designer.cs"> |
70 |
<AutoGen>True</AutoGen> |
71 |
<DependentUpon>Resources.resx</DependentUpon> |
72 |
<DesignTime>True</DesignTime> |
73 |
</Compile> |
74 |
<None Include="app.config" /> |
75 |
<None Include="Properties\Settings.settings"> |
76 |
<Generator>SettingsSingleFileGenerator</Generator> |
77 |
<LastGenOutput>Settings.Designer.cs</LastGenOutput> |
78 |
</None> |
79 |
<Compile Include="Properties\Settings.Designer.cs"> |
80 |
<AutoGen>True</AutoGen> |
81 |
<DependentUpon>Settings.settings</DependentUpon> |
82 |
<DesignTimeSharedInput>True</DesignTimeSharedInput> |
83 |
</Compile> |
84 |
</ItemGroup> |
85 |
<ItemGroup> |
86 |
<None Include="Resources\AppIcon.ico" /> |
87 |
</ItemGroup> |
88 |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
89 |
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
90 |
Other similar extension points exist, see Microsoft.Common.targets. |
91 |
<Target Name="BeforeBuild"> |
92 |
</Target> |
93 |
<Target Name="AfterBuild"> |
94 |
</Target> |
95 |
--> |
96 |
<PropertyGroup> |
97 |
<PostBuildEvent>copy "$(TargetPath)" "$(SolutionDir)\..\bin\$(TargetFileName)" |
98 |
</PostBuildEvent> |
99 |
</PropertyGroup> |
100 |
</Project> |