Skip to content

Commit be364ce

Browse files
DevExpressExampleBotDevExpressExampleBot
DevExpressExampleBot
authored and
DevExpressExampleBot
committed
Source auto update [skip ci]
1 parent c707e2e commit be364ce

34 files changed

+493
-593
lines changed

VB/Dennis.Search.Win/Dennis.Search.Win.vbproj

+22-49
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,44 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.5">
33
<PropertyGroup>
4+
<OptionInfer>On</OptionInfer>
45
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
56
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
67
<ProductVersion>12.0.21005.1</ProductVersion>
78
<SchemaVersion>2.0</SchemaVersion>
89
<ProjectGuid>{438CA0A4-0889-43B5-898C-DEDE07A7FFD2}</ProjectGuid>
910
<OutputType>Library</OutputType>
10-
<RootNamespace></RootNamespace>
11+
<AppDesignerFolder>Properties</AppDesignerFolder>
12+
<RootNamespace>
13+
</RootNamespace>
1114
<AssemblyName>Dennis.Search.Win</AssemblyName>
12-
<OptionExplicit>On</OptionExplicit>
13-
<OptionCompare>Binary</OptionCompare>
14-
<OptionStrict>Off</OptionStrict>
15-
<OptionInfer>On</OptionInfer>
1615
</PropertyGroup>
1716
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1817
<DebugSymbols>true</DebugSymbols>
1918
<DebugType>full</DebugType>
2019
<Optimize>false</Optimize>
2120
<OutputPath>bin\Debug\</OutputPath>
22-
<DefineDebug>true</DefineDebug>
23-
<DefineTrace>true</DefineTrace>
21+
<DefineConstants>DEBUG,TRACE</DefineConstants>
2422
<ErrorReport>prompt</ErrorReport>
23+
<WarningLevel>4</WarningLevel>
2524
</PropertyGroup>
2625
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2726
<DebugType>pdbonly</DebugType>
2827
<Optimize>true</Optimize>
2928
<OutputPath>bin\Release\</OutputPath>
30-
<DefineDebug>false</DefineDebug>
31-
<DefineTrace>true</DefineTrace>
29+
<DefineConstants>TRACE</DefineConstants>
3230
<ErrorReport>prompt</ErrorReport>
31+
<WarningLevel>4</WarningLevel>
3332
</PropertyGroup>
3433
<ItemGroup>
35-
<Import Include="Microsoft.VisualBasic" />
36-
<Import Include="System.Collections.Generic" />
37-
<Import Include="System.Collections" />
38-
<Import Include="System.Diagnostics" />
39-
<Import Include="System.Linq" />
40-
<Import Include="System.Drawing" />
41-
<Import Include="System.Windows.Forms" />
42-
<Import Include="System" />
43-
</ItemGroup>
44-
<ItemGroup>
45-
<Reference Include="DevExpress.Printing.v16.1.Core">
46-
<Private>True</Private>
47-
</Reference>
48-
<Reference Include="DevExpress.Data.v16.1">
49-
<Private>True</Private>
50-
</Reference>
51-
<Reference Include="DevExpress.ExpressApp.Xpo.v16.1">
52-
<Private>True</Private>
53-
</Reference>
54-
<Reference Include="DevExpress.ExpressApp.v16.1">
55-
<Private>True</Private>
56-
</Reference>
57-
<Reference Include="DevExpress.ExpressApp.Win.v16.1">
58-
<Private>True</Private>
59-
</Reference>
60-
<Reference Include="DevExpress.Utils.v16.1">
61-
<Private>True</Private>
62-
</Reference>
63-
<Reference Include="DevExpress.Xpo.v16.1">
64-
<Private>True</Private>
65-
</Reference>
66-
<Reference Include="DevExpress.XtraEditors.v16.1">
67-
<Private>True</Private>
68-
</Reference>
34+
<Reference Include="DevExpress.Printing.v16.1.Core" />
35+
<Reference Include="DevExpress.Data.v16.1" />
36+
<Reference Include="DevExpress.ExpressApp.Xpo.v16.1" />
37+
<Reference Include="DevExpress.ExpressApp.v16.1" />
38+
<Reference Include="DevExpress.ExpressApp.Win.v16.1" />
39+
<Reference Include="DevExpress.Utils.v16.1" />
40+
<Reference Include="DevExpress.Xpo.v16.1" />
41+
<Reference Include="DevExpress.XtraEditors.v16.1" />
6942
<Reference Include="System">
7043
<Name>System</Name>
7144
<Private>False</Private>
@@ -83,8 +56,8 @@
8356
<Compile Include="Module.Designer.vb">
8457
<DependentUpon>Module.vb</DependentUpon>
8558
</Compile>
86-
<Compile Include="My Project\AssemblyInfo.vb" />
87-
<Compile Include="My Project\Resources.Designer.vb">
59+
<Compile Include="Properties\AssemblyInfo.vb" />
60+
<Compile Include="Properties\Resources.Designer.vb">
8861
<AutoGen>True</AutoGen>
8962
<DesignTime>True</DesignTime>
9063
<DependentUpon>Resources.resx</DependentUpon>
@@ -106,15 +79,15 @@
10679
</EmbeddedResource>
10780
</ItemGroup>
10881
<ItemGroup>
109-
<EmbeddedResource Include="My Project\Resources.resx">
82+
<EmbeddedResource Include="Properties\Resources.resx">
11083
<SubType>Designer</SubType>
111-
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
84+
<Generator>ResXFileCodeGenerator</Generator>
11285
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
113-
<CustomToolNamespace>My.Resources</CustomToolNamespace>
86+
<CustomToolNamespace>Dennis.Search.Win.Properties</CustomToolNamespace>
11487
</EmbeddedResource>
11588
</ItemGroup>
11689
<Import Project="$(MSBuildBinPath)\Microsoft.VisualBasic.targets" />
117-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
90+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
11891
Other similar extension points exist, see Microsoft.Common.targets.
11992
<Target Name="BeforeBuild">
12093
</Target>

VB/Dennis.Search.Win/Module.Designer.vb

+9-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

VB/Dennis.Search.Win/Module.resx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<root>
33
<!--
44
Microsoft ResX Schema

VB/Dennis.Search.Win/Module.vb

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
' Developer Express Code Central Example:
1+
' Developer Express Code Central Example:
22
' How to search for objects by using all the properties or by using more complex criteria
33
'
44
' This example provides a possible workaround for the suggestion. The
@@ -21,11 +21,10 @@
2121
'
2222
' You can find sample updates and versions for different programming languages here:
2323
' http://www.devexpress.com/example=E1744
24-
25-
Imports System
2624
Imports DevExpress.ExpressApp
2725

2826
Namespace Dennis.Search.Win
27+
2928
Public NotInheritable Partial Class SearchModule
3029
Inherits ModuleBase
3130

VB/Dennis.Search.Win/My Project/AssemblyInfo.vb VB/Dennis.Search.Win/Properties/AssemblyInfo.vb

+11-16
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
' Developer Express Code Central Example:
1+
' Developer Express Code Central Example:
22
' How to search for objects by using all the properties or by using more complex criteria
33
'
44
' This example provides a possible workaround for the suggestion. The
@@ -21,28 +21,24 @@
2121
'
2222
' You can find sample updates and versions for different programming languages here:
2323
' http://www.devexpress.com/example=E1744
24-
2524
Imports System.Reflection
26-
Imports System.Runtime.CompilerServices
2725
Imports System.Runtime.InteropServices
2826

2927
' General Information about an assembly is controlled through the following
3028
' set of attributes. Change these attribute values to modify the information
3129
' associated with an assembly.
32-
<Assembly: AssemblyTitle("Dennis.Search")>
33-
<Assembly: AssemblyDescription("")>
34-
<Assembly: AssemblyConfiguration("")>
35-
<Assembly: AssemblyCompany("-")>
36-
<Assembly: AssemblyProduct("Dennis.Search")>
37-
<Assembly: AssemblyCopyright("Copyright © - 2007")>
38-
<Assembly: AssemblyTrademark("")>
39-
<Assembly: AssemblyCulture("")>
40-
30+
<Assembly:AssemblyTitle("Dennis.Search")>
31+
<Assembly:AssemblyDescription("")>
32+
<Assembly:AssemblyConfiguration("")>
33+
<Assembly:AssemblyCompany("-")>
34+
<Assembly:AssemblyProduct("Dennis.Search")>
35+
<Assembly:AssemblyCopyright("Copyright © - 2007")>
36+
<Assembly:AssemblyTrademark("")>
37+
<Assembly:AssemblyCulture("")>
4138
' Setting ComVisible to false makes the types in this assembly not visible
4239
' to COM components. If you need to access a type in this assembly from
4340
' COM, set the ComVisible attribute to true on that type.
44-
<Assembly: ComVisible(False)>
45-
41+
<Assembly:ComVisible(False)>
4642
' Version information for an assembly consists of the following four values:
4743
'
4844
' Major Version
@@ -52,5 +48,4 @@ Imports System.Runtime.InteropServices
5248
'
5349
' You can specify all the values or you can default the Revision and Build Numbers
5450
' by using the '*' as shown below:
55-
<Assembly: AssemblyVersion("1.0.*")>
56-
51+
<Assembly:AssemblyVersion("1.0.*")>

VB/Dennis.Search.Win/My Project/Resources.Designer.vb VB/Dennis.Search.Win/Properties/Resources.Designer.vb

+31-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)