-
Notifications
You must be signed in to change notification settings - Fork 8
/
RGSS Extractor.csproj
58 lines (58 loc) · 2.37 KB
/
RGSS Extractor.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{E6343190-3A80-4C26-9591-F22F65645AB9}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>WinExe</OutputType>
<AssemblyName>RGSS Extractor</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<WarningLevel>4</WarningLevel>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
<Reference Include="System" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RGSS_Extractor.Properties\Resources.cs" />
<Compile Include="RGSS_Extractor.Properties\Settings.cs" />
<Compile Include="RGSS_Extractor\Entry.cs" />
<Compile Include="RGSS_Extractor\Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="RGSS_Extractor\Main_Parser.cs" />
<Compile Include="RGSS_Extractor\Parser.cs" />
<Compile Include="RGSS_Extractor\Program.cs" />
<Compile Include="RGSS_Extractor\RGSS3A_Parser.cs" />
<Compile Include="RGSS_Extractor\RGSSAD_Parser.cs" />
<Compile Include="RGSS_Extractor\WinFileIO.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="RGSS_Extractor\Form1.resx" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>