|
45 | 45 | <Reference Include="Microsoft.CSharp"> |
46 | 46 | <RequiredTargetFramework>4.0</RequiredTargetFramework> |
47 | 47 | </Reference> |
| 48 | + <Reference Include="PresentationCore"> |
| 49 | + <RequiredTargetFramework>3.0</RequiredTargetFramework> |
| 50 | + </Reference> |
| 51 | + <Reference Include="PresentationFramework"> |
| 52 | + <RequiredTargetFramework>3.0</RequiredTargetFramework> |
| 53 | + </Reference> |
48 | 54 | <Reference Include="System" /> |
49 | 55 | <Reference Include="System.Core"> |
50 | 56 | <RequiredTargetFramework>3.5</RequiredTargetFramework> |
|
53 | 59 | <Reference Include="System.Data.DataSetExtensions"> |
54 | 60 | <RequiredTargetFramework>3.5</RequiredTargetFramework> |
55 | 61 | </Reference> |
| 62 | + <Reference Include="System.Design" /> |
| 63 | + <Reference Include="System.Drawing" /> |
| 64 | + <Reference Include="System.Windows.Forms" /> |
| 65 | + <Reference Include="System.Xaml"> |
| 66 | + <RequiredTargetFramework>4.0</RequiredTargetFramework> |
| 67 | + </Reference> |
56 | 68 | <Reference Include="System.Xml" /> |
57 | 69 | <Reference Include="System.Xml.Linq"> |
58 | 70 | <RequiredTargetFramework>3.5</RequiredTargetFramework> |
59 | 71 | </Reference> |
| 72 | + <Reference Include="WindowsBase"> |
| 73 | + <RequiredTargetFramework>3.0</RequiredTargetFramework> |
| 74 | + </Reference> |
60 | 75 | </ItemGroup> |
61 | 76 | <ItemGroup> |
62 | 77 | <Folder Include="Configuration" /> |
63 | | - <Folder Include="DesignerBinding" /> |
64 | | - <Folder Include="Commands" /> |
| 78 | + <Folder Include="src" /> |
| 79 | + <Folder Include="src\DesignerBinding" /> |
| 80 | + <Folder Include="src\Commands" /> |
| 81 | + <Folder Include="src\Designer" /> |
| 82 | + <Folder Include="src\Globals" /> |
| 83 | + <Folder Include="src\DesignableItems" /> |
| 84 | + <Folder Include="src\Toolbox" /> |
| 85 | + <Folder Include="src\TypeProvider" /> |
| 86 | + <Folder Include="src\XML" /> |
| 87 | + <Folder Include="src\Services" /> |
| 88 | + <Folder Include="src\Views" /> |
65 | 89 | </ItemGroup> |
66 | 90 | <ItemGroup> |
67 | | - <Compile Include="..\..\..\..\Main\GlobalAssemblyInfo.cs"> |
68 | | - <Link>Configuration\GlobalAssemblyInfo.cs</Link> |
69 | | - </Compile> |
70 | 91 | <Compile Include="Configuration\AssemblyInfo.cs" /> |
71 | | - <Compile Include="Commands\ViewCommands.cs" /> |
72 | | - <Compile Include="DesignerBinding\DesignerBinding.cs" /> |
| 92 | + <Compile Include="src\Commands\ViewCommands.cs" /> |
| 93 | + <Compile Include="src\DesignableItems\AbstractItem.cs" /> |
| 94 | + <Compile Include="src\DesignableItems\BaseLineItem.cs" /> |
| 95 | + <Compile Include="src\DesignableItems\BaseSection.cs" /> |
| 96 | + <Compile Include="src\DesignableItems\BaseTextItem.cs" /> |
| 97 | + <Compile Include="src\DesignableItems\ReportSettings.cs" /> |
| 98 | + <Compile Include="src\DesignerBinding\DesignerBinding.cs" /> |
| 99 | + <Compile Include="src\DesignerBinding\DesignerGenerator.cs" /> |
| 100 | + <Compile Include="src\DesignerBinding\IDesignerGenerator.cs" /> |
| 101 | + <Compile Include="src\DesignerBinding\InternalReportLoader.cs" /> |
| 102 | + <Compile Include="src\DesignerBinding\ReportDefinitionDeserializer.cs" /> |
| 103 | + <Compile Include="src\DesignerBinding\ReportDesignerLoader.cs" /> |
| 104 | + <Compile Include="src\Designer\AbstractDesigner.cs" /> |
| 105 | + <Compile Include="src\Designer\LineDesigner.cs" /> |
| 106 | + <Compile Include="src\Designer\ReportRootDesigner.cs" /> |
| 107 | + <Compile Include="src\Designer\ReportSettingsDesigner.cs" /> |
| 108 | + <Compile Include="src\Designer\RootReportModel.cs" /> |
| 109 | + <Compile Include="src\Designer\SectionDesigner.cs" /> |
| 110 | + <Compile Include="src\Designer\TextItemDesigner.cs" /> |
| 111 | + <Compile Include="src\Globals\DesignerGlobals.cs" /> |
| 112 | + <Compile Include="src\Globals\StringWriterWithEncoding.cs" /> |
| 113 | + <Compile Include="src\Services\DefaultMemberRelationshipService.cs" /> |
| 114 | + <Compile Include="src\Services\DesignerSerializationService.cs" /> |
| 115 | + <Compile Include="src\Services\MenuCommandService.cs" /> |
| 116 | + <Compile Include="src\Services\NameCreationService.cs" /> |
| 117 | + <Compile Include="src\Services\TypeDiscoveryService.cs" /> |
| 118 | + <Compile Include="src\Services\TypeResolutionService.cs" /> |
| 119 | + <Compile Include="src\Services\DefaultServiceContainer.cs" /> |
| 120 | + <Compile Include="src\Services\HelpService.cs" /> |
| 121 | + <Compile Include="src\Services\ToolboxService.cs" /> |
| 122 | + <Compile Include="src\Services\UIService.cs" /> |
| 123 | + <Compile Include="src\Toolbox\SideTabItemDesigner.cs" /> |
| 124 | + <Compile Include="src\Toolbox\ToolboxProvider.cs" /> |
| 125 | + <Compile Include="src\TypeProvider\AbstractItemTypeProvider.cs" /> |
| 126 | + <Compile Include="src\TypeProvider\LineItemTypeProvider.cs" /> |
| 127 | + <Compile Include="src\TypeProvider\SectionItemTypeProvider.cs" /> |
| 128 | + <Compile Include="src\TypeProvider\TextItemTypeProvider.cs" /> |
| 129 | + <Compile Include="src\TypeProvider\TypeProviderHelper.cs" /> |
| 130 | + <Compile Include="src\Views\DesignerView.cs" /> |
| 131 | + <Compile Include="src\Views\WpfPreview.cs" /> |
| 132 | + <Compile Include="src\Views\XmlView.cs" /> |
| 133 | + <Compile Include="src\XML\MycroWriter.cs" /> |
| 134 | + <Compile Include="src\XML\ReportDefinitionParser.cs" /> |
| 135 | + <Compile Include="src\XML\ReportDesignerWriter.cs" /> |
| 136 | + <Compile Include="src\XML\XmlHelper.cs" /> |
73 | 137 | </ItemGroup> |
74 | 138 | <ItemGroup> |
75 | 139 | <None Include="EmptyReport.xft"> |
|
90 | 154 | <Name>ICSharpCode.Core</Name> |
91 | 155 | <Private>False</Private> |
92 | 156 | </ProjectReference> |
| 157 | + <ProjectReference Include="..\..\..\..\Main\ICSharpCode.Core.WinForms\ICSharpCode.Core.WinForms.csproj"> |
| 158 | + <Project>{857CA1A3-FC88-4BE0-AB6A-D1EE772AB288}</Project> |
| 159 | + <Name>ICSharpCode.Core.WinForms</Name> |
| 160 | + </ProjectReference> |
| 161 | + <ProjectReference Include="..\..\..\..\Main\ICSharpCode.SharpDevelop.Widgets\Project\ICSharpCode.SharpDevelop.Widgets.csproj"> |
| 162 | + <Project>{8035765F-D51F-4A0C-A746-2FD100E19419}</Project> |
| 163 | + <Name>ICSharpCode.SharpDevelop.Widgets</Name> |
| 164 | + </ProjectReference> |
93 | 165 | <ProjectReference Include="..\ICSharpCode.Reporting\ICSharpCode.Reporting.csproj"> |
94 | 166 | <Project>{40CA84D4-ACFC-4646-9CDD-B87262D34093}</Project> |
95 | 167 | <Name>ICSharpCode.Reporting</Name> |
|
0 commit comments