Skip to content

Commit 7fde984

Browse files
first release
first release
1 parent 21b681c commit 7fde984

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+7489
-0
lines changed

Demo Application/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7" />
5+
</startup>
6+
</configuration>
Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{7FB4A687-C916-45B6-9DCE-D9EB8719AC89}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<StartupObject>My.MyApplication</StartupObject>
10+
<RootNamespace>
11+
</RootNamespace>
12+
<AssemblyName>Demo Application</AssemblyName>
13+
<FileAlignment>512</FileAlignment>
14+
<MyType>WindowsForms</MyType>
15+
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
16+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
17+
</PropertyGroup>
18+
<PropertyGroup>
19+
<OptionExplicit>On</OptionExplicit>
20+
</PropertyGroup>
21+
<PropertyGroup>
22+
<OptionCompare>Binary</OptionCompare>
23+
</PropertyGroup>
24+
<PropertyGroup>
25+
<OptionStrict>On</OptionStrict>
26+
</PropertyGroup>
27+
<PropertyGroup>
28+
<OptionInfer>Off</OptionInfer>
29+
</PropertyGroup>
30+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
31+
<PlatformTarget>AnyCPU</PlatformTarget>
32+
<DebugSymbols>true</DebugSymbols>
33+
<DebugType>full</DebugType>
34+
<DefineDebug>true</DefineDebug>
35+
<DefineTrace>true</DefineTrace>
36+
<OutputPath>bin\AnyCPU\Debug\</OutputPath>
37+
<DocumentationFile>Demo Application.xml</DocumentationFile>
38+
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
39+
</PropertyGroup>
40+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
41+
<PlatformTarget>AnyCPU</PlatformTarget>
42+
<DebugType>pdbonly</DebugType>
43+
<DefineDebug>false</DefineDebug>
44+
<DefineTrace>true</DefineTrace>
45+
<Optimize>true</Optimize>
46+
<OutputPath>bin\AnyCPU\Release\</OutputPath>
47+
<DocumentationFile>Demo Application.xml</DocumentationFile>
48+
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
49+
</PropertyGroup>
50+
<PropertyGroup />
51+
<ItemGroup>
52+
<Reference Include="System" />
53+
<Reference Include="System.Drawing" />
54+
<Reference Include="System.Windows.Forms" />
55+
<Reference Include="System.Core" />
56+
</ItemGroup>
57+
<ItemGroup>
58+
<Import Include="Microsoft.VisualBasic" />
59+
<Import Include="System" />
60+
<Import Include="System.Collections" />
61+
<Import Include="System.Collections.Generic" />
62+
<Import Include="System.Collections.ObjectModel" />
63+
<Import Include="System.ComponentModel" />
64+
<Import Include="System.Diagnostics" />
65+
<Import Include="System.Drawing" />
66+
<Import Include="System.Globalization" />
67+
<Import Include="System.IO" />
68+
<Import Include="System.Runtime.CompilerServices" />
69+
<Import Include="System.Runtime.InteropServices" />
70+
<Import Include="System.Security.Permissions" />
71+
<Import Include="System.Text" />
72+
<Import Include="System.Threading" />
73+
<Import Include="System.Windows.Forms" />
74+
<Import Include="System.Linq" />
75+
<Import Include="System.Xml.Linq" />
76+
<Import Include="System.Threading.Tasks" />
77+
</ItemGroup>
78+
<ItemGroup>
79+
<Compile Include="Main.vb">
80+
<SubType>Form</SubType>
81+
</Compile>
82+
<Compile Include="Main.Designer.vb">
83+
<DependentUpon>Main.vb</DependentUpon>
84+
<SubType>Form</SubType>
85+
</Compile>
86+
<Compile Include="My Project\AssemblyInfo.vb" />
87+
<Compile Include="My Project\Application.Designer.vb">
88+
<AutoGen>True</AutoGen>
89+
<DependentUpon>Application.myapp</DependentUpon>
90+
</Compile>
91+
<Compile Include="My Project\Resources.Designer.vb">
92+
<AutoGen>True</AutoGen>
93+
<DesignTime>True</DesignTime>
94+
<DependentUpon>Resources.resx</DependentUpon>
95+
</Compile>
96+
<Compile Include="My Project\Settings.Designer.vb">
97+
<AutoGen>True</AutoGen>
98+
<DependentUpon>Settings.settings</DependentUpon>
99+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
100+
</Compile>
101+
</ItemGroup>
102+
<ItemGroup>
103+
<EmbeddedResource Include="Main.resx">
104+
<DependentUpon>Main.vb</DependentUpon>
105+
</EmbeddedResource>
106+
<EmbeddedResource Include="My Project\Resources.resx">
107+
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
108+
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
109+
<CustomToolNamespace>My.Resources</CustomToolNamespace>
110+
<SubType>Designer</SubType>
111+
</EmbeddedResource>
112+
</ItemGroup>
113+
<ItemGroup>
114+
<None Include="My Project\Application.myapp">
115+
<Generator>MyApplicationCodeGenerator</Generator>
116+
<LastGenOutput>Application.Designer.vb</LastGenOutput>
117+
</None>
118+
<None Include="My Project\Settings.settings">
119+
<Generator>SettingsSingleFileGenerator</Generator>
120+
<CustomToolNamespace>My</CustomToolNamespace>
121+
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
122+
</None>
123+
<None Include="App.config" />
124+
</ItemGroup>
125+
<ItemGroup>
126+
<ProjectReference Include="..\ElektroDwmThumbnail\ElektroDwmThumbnail.vbproj">
127+
<Project>{d861a848-f4b7-49a4-8067-901d2813cd62}</Project>
128+
<Name>ElektroDwmThumbnail</Name>
129+
</ProjectReference>
130+
</ItemGroup>
131+
<ItemGroup>
132+
<None Include="Resources\MirrorBackground.png" />
133+
</ItemGroup>
134+
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
135+
</Project>

0 commit comments

Comments
 (0)