Skip to content

Commit 2f85657

Browse files
committed
test
1 parent 45ee621 commit 2f85657

8 files changed

+159
-651
lines changed

AutoLayoutApplication.csproj

Lines changed: 87 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,91 +1,94 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="3.5" 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.21022</ProductVersion>
7-
<SchemaVersion>2.0</SchemaVersion>
8-
<ProjectGuid>{BF45783A-8A0D-4BEB-BBAC-B850A53DD379}</ProjectGuid>
9-
<OutputType>WinExe</OutputType>
10-
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>AutoLayoutApplication</RootNamespace>
12-
<AssemblyName>AutoLayoutApplication</AssemblyName>
13-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14-
<FileAlignment>512</FileAlignment>
15-
<TargetFrameworkSubset>
16-
</TargetFrameworkSubset>
17-
<StartupObject>
18-
</StartupObject>
19-
</PropertyGroup>
20-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21-
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
23-
<Optimize>false</Optimize>
24-
<OutputPath>bin\Debug\</OutputPath>
25-
<DefineConstants>DEBUG;TRACE</DefineConstants>
26-
<ErrorReport>prompt</ErrorReport>
27-
<WarningLevel>4</WarningLevel>
28-
</PropertyGroup>
29-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30-
<DebugType>pdbonly</DebugType>
31-
<Optimize>true</Optimize>
32-
<OutputPath>bin\Release\</OutputPath>
33-
<DefineConstants>TRACE</DefineConstants>
34-
<ErrorReport>prompt</ErrorReport>
35-
<WarningLevel>4</WarningLevel>
36-
</PropertyGroup>
37-
<ItemGroup>
38-
<Reference Include="System" />
39-
<Reference Include="System.Core">
40-
<RequiredTargetFramework>3.5</RequiredTargetFramework>
41-
</Reference>
42-
<Reference Include="System.Data" />
43-
<Reference Include="System.Deployment" />
44-
<Reference Include="System.Drawing" />
45-
<Reference Include="System.Windows.Forms" />
46-
<Reference Include="System.Xml" />
47-
</ItemGroup>
48-
<ItemGroup>
49-
<Compile Include="MainForm.cs">
50-
<SubType>Form</SubType>
51-
</Compile>
52-
<Compile Include="MainForm.Designer.cs">
53-
<DependentUpon>MainForm.cs</DependentUpon>
54-
</Compile>
55-
<Compile Include="NodeCollection.cs" />
56-
<Compile Include="Node.cs" />
57-
<Compile Include="Vector.cs" />
58-
<Compile Include="Program.cs" />
59-
<Compile Include="Properties\AssemblyInfo.cs" />
60-
<EmbeddedResource Include="MainForm.resx">
61-
<DependentUpon>MainForm.cs</DependentUpon>
62-
</EmbeddedResource>
63-
<EmbeddedResource Include="Properties\Resources.resx">
64-
<Generator>ResXFileCodeGenerator</Generator>
65-
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
66-
<SubType>Designer</SubType>
67-
</EmbeddedResource>
68-
<Compile Include="Properties\Resources.Designer.cs">
69-
<AutoGen>True</AutoGen>
70-
<DependentUpon>Resources.resx</DependentUpon>
71-
<DesignTime>True</DesignTime>
72-
</Compile>
73-
<None Include="Properties\Settings.settings">
74-
<Generator>SettingsSingleFileGenerator</Generator>
75-
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
76-
</None>
77-
<Compile Include="Properties\Settings.Designer.cs">
78-
<AutoGen>True</AutoGen>
79-
<DependentUpon>Settings.settings</DependentUpon>
80-
<DesignTimeSharedInput>True</DesignTimeSharedInput>
81-
</Compile>
82-
</ItemGroup>
83-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="3.5" 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>{BF45783A-8A0D-4BEB-BBAC-B850A53DD379}</ProjectGuid>
9+
<OutputType>WinExe</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>AutoLayoutApplication</RootNamespace>
12+
<AssemblyName>AutoLayoutApplication</AssemblyName>
13+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14+
<FileAlignment>512</FileAlignment>
15+
<TargetFrameworkSubset>
16+
</TargetFrameworkSubset>
17+
<StartupObject>
18+
</StartupObject>
19+
</PropertyGroup>
20+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21+
<DebugSymbols>true</DebugSymbols>
22+
<DebugType>full</DebugType>
23+
<Optimize>false</Optimize>
24+
<OutputPath>bin\Debug\</OutputPath>
25+
<DefineConstants>DEBUG;TRACE</DefineConstants>
26+
<ErrorReport>prompt</ErrorReport>
27+
<WarningLevel>4</WarningLevel>
28+
</PropertyGroup>
29+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30+
<DebugType>pdbonly</DebugType>
31+
<Optimize>true</Optimize>
32+
<OutputPath>bin\Release\</OutputPath>
33+
<DefineConstants>TRACE</DefineConstants>
34+
<ErrorReport>prompt</ErrorReport>
35+
<WarningLevel>4</WarningLevel>
36+
</PropertyGroup>
37+
<ItemGroup>
38+
<Reference Include="System" />
39+
<Reference Include="System.Core">
40+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
41+
</Reference>
42+
<Reference Include="System.Data" />
43+
<Reference Include="System.Deployment" />
44+
<Reference Include="System.Drawing" />
45+
<Reference Include="System.Windows.Forms" />
46+
<Reference Include="System.Xml" />
47+
</ItemGroup>
48+
<ItemGroup>
49+
<Compile Include="Controller\NodeController.cs" />
50+
<Compile Include="Controller\TimerController.cs" />
51+
<Compile Include="Model\TimerSwitch.cs" />
52+
<Compile Include="View\MainForm.cs">
53+
<SubType>Form</SubType>
54+
</Compile>
55+
<Compile Include="View\MainForm.Designer.cs">
56+
<DependentUpon>MainForm.cs</DependentUpon>
57+
</Compile>
58+
<Compile Include="Model\NodeCollection.cs" />
59+
<Compile Include="Model\Node.cs" />
60+
<Compile Include="Model\Vector.cs" />
61+
<Compile Include="Program.cs" />
62+
<Compile Include="Properties\AssemblyInfo.cs" />
63+
<EmbeddedResource Include="View\MainForm.resx">
64+
<DependentUpon>MainForm.cs</DependentUpon>
65+
</EmbeddedResource>
66+
<EmbeddedResource Include="Properties\Resources.resx">
67+
<Generator>ResXFileCodeGenerator</Generator>
68+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
69+
<SubType>Designer</SubType>
70+
</EmbeddedResource>
71+
<Compile Include="Properties\Resources.Designer.cs">
72+
<AutoGen>True</AutoGen>
73+
<DependentUpon>Resources.resx</DependentUpon>
74+
<DesignTime>True</DesignTime>
75+
</Compile>
76+
<None Include="Properties\Settings.settings">
77+
<Generator>SettingsSingleFileGenerator</Generator>
78+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
79+
</None>
80+
<Compile Include="Properties\Settings.Designer.cs">
81+
<AutoGen>True</AutoGen>
82+
<DependentUpon>Settings.settings</DependentUpon>
83+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
84+
</Compile>
85+
</ItemGroup>
86+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
8487
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
8588
Other similar extension points exist, see Microsoft.Common.targets.
8689
<Target Name="BeforeBuild">
8790
</Target>
8891
<Target Name="AfterBuild">
8992
</Target>
90-
-->
93+
-->
9194
</Project>

MainForm.Designer.cs

Lines changed: 0 additions & 74 deletions
This file was deleted.

MainForm.cs

Lines changed: 0 additions & 131 deletions
This file was deleted.

0 commit comments

Comments
 (0)