-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathModMenuBuilder.csproj
108 lines (108 loc) · 4.83 KB
/
ModMenuBuilder.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
101
102
103
104
105
106
107
108
<?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>{6F4A7560-A37C-4D0C-AD8E-03D2776A88D5}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>ModMenuBuilder</RootNamespace>
<AssemblyName>ModMenuBuilder</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>alibaba.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="DarkUI, Version=2.0.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\DarkUI.2.0.2\lib\DarkUI.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Management" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Builder\Classes\Flag.cs" />
<Compile Include="Builder\Classes\MenuBuilder.cs" />
<Compile Include="Builder\GUI\BuilderForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Builder\GUI\BuilderForm.Designer.cs">
<DependentUpon>BuilderForm.cs</DependentUpon>
</Compile>
<Compile Include="Builder\Program.cs" />
<Compile Include="Builder\Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Builder\App.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup Condition=" '$(Configuration)' == 'Release' ">
<None Include="$(SolutionDir)Assets\**" CopyToOutputDirectory="PreserveNewest" Visible="false" />
<None Include="$(SolutionDir)Scripts\**" CopyToOutputDirectory="PreserveNewest" Visible="false" />
</ItemGroup>
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
<None Include="$(SolutionDir)Assets\**" CopyToOutputDirectory="Always" />
<None Include="$(SolutionDir)Scripts\**" CopyToOutputDirectory="Always" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AtlusFileSystemLibrary\Source\AtlusFileSystemLibrary\AtlusFileSystemLibrary.csproj">
<Project>{9960b785-6207-44e8-ba42-ec7f6f785344}</Project>
<Name>AtlusFileSystemLibrary</Name>
</ProjectReference>
<ProjectReference Include="..\ShrineFox.IO\ShrineFox.IO.csproj">
<Project>{7640412a-7372-4925-b20c-0178d8818a8f}</Project>
<Name>ShrineFox.IO</Name>
</ProjectReference>
<ProjectReference Include="..\SimpleCommandLine\Source\SimpleCommandLine\SimpleCommandLine.csproj">
<Project>{7a1f22a9-5eed-4f8d-a3c9-a99b8ecfacb0}</Project>
<Name>SimpleCommandLine</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Builder\GUI\BuilderForm.resx">
<DependentUpon>BuilderForm.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Content Include="alibaba.ico" />
<Content Include="version.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>