/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
samples/snippets/visualbasic/VS_Snippets_Wpf/InsertText/VisualBasic/InsertTextClient.vbproj
131 строка
6 KB
Andy De George
Move snippets from samples repo to this repo (#17296)
03 мар 2020, 19:23
Не верифицирован
03 мар 2020, 19:23
dbbeda1
Код
Авторство
О чём код?
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProjectGuid>{E81A6CC1-B79A-4686-9AF0-602DA071AEA4}</ProjectGuid> <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids> <OutputType>WinExe</OutputType> <RootNamespace>InsertTextClient</RootNamespace> <AssemblyName>InsertTextClient</AssemblyName> <ApplicationVersion>1.0.0.*</ApplicationVersion> <!-- Most people will use Publish dialog in Visual Studio to increment this --> <BootstrapperEnabled>false</BootstrapperEnabled> <MyType>WindowsFormsWithCustomSubMain</MyType> <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkProfile>Client</TargetFrameworkProfile> <ProductVersion>10.0.20821</ProductVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <DefineDebug>true</DefineDebug> <DefineTrace>true</DefineTrace> <IncrementalBuild>true</IncrementalBuild> <OutputPath>bin\debug\</OutputPath> <DocumentationFile>InsertTextClient.xml</DocumentationFile> <NoWarn>42016,42017,42018,42019,42032,42314</NoWarn> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugSymbols>false</DebugSymbols> <DefineDebug>false</DefineDebug> <DefineTrace>true</DefineTrace> <IncrementalBuild>false</IncrementalBuild> <Optimize>true</Optimize> <OutputPath>bin\</OutputPath> <DocumentationFile>InsertTextClient.xml</DocumentationFile> <NoWarn>42016,42017,42018,42019,42032,42314</NoWarn> </PropertyGroup> <ItemGroup> <Reference Include="mscorlib" /> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>C:\Program Files\Reference Assemblies\Microsoft\WinFx\v3.0\System.Windows.Forms.dll</HintPath> </Reference> <Reference Include="System.Xml" /> <Reference Include="UIAutomationClient" /> <Reference Include="UIAutomationClientsideProviders" /> <Reference Include="WindowsBase" /> <Reference Include="PresentationCore" /> <Reference Include="PresentationFramework" /> <Reference Include="System.Xaml"> <RequiredTargetFramework>4.0</RequiredTargetFramework> </Reference> <Reference Include="UIAutomationProvider" /> <Reference Include="UIAutomationTypes" /> <Reference Include="ReachFramework" /> <Reference Include="System.Printing" /> <Reference Include="System.ServiceModel" /> <Reference Include="System.Runtime.Serialization" /> <Reference Include="System.IdentityModel" /> </ItemGroup> <ItemGroup> <ApplicationDefinition Include="App.xaml"> <Generator>MSBuild:Compile</Generator> <SubType>Designer</SubType> </ApplicationDefinition> <Page Include="Window1.xaml"> <Generator>MSBuild:Compile</Generator> <SubType>Designer</SubType> </Page> <Compile Include="App.xaml.vb"> <DependentUpon>App.xaml</DependentUpon> <SubType>Code</SubType> </Compile> <Compile Include="Window1.xaml.vb"> <DependentUpon>Window1.xaml</DependentUpon> <SubType>Code</SubType> </Compile> </ItemGroup> <ItemGroup> <Import Include="Microsoft.VisualBasic" /> <Import Include="System" /> <Import Include="System.Collections" /> <Import Include="System.Diagnostics" /> <Import Include="System.Windows" /> <Import Include="System.Windows.Controls" /> <Import Include="System.Windows.Documents" /> <Import Include="System.Windows.Shapes" /> <Import Include="System.Windows.Media" /> <Import Include="System.Windows.Navigation" /> <Import Include="System.Windows.Data" /> </ItemGroup> <ItemGroup> <Compile Include="My Project\Application.Designer.vb"> <AutoGen>True</AutoGen> <DependentUpon>Application.myapp</DependentUpon> </Compile> <Compile Include="My Project\AssemblyInfo.vb"> <SubType>Code</SubType> </Compile> <Compile Include="My Project\ClientSettings.Designer.vb" /> <Compile Include="My Project\Resources.Designer.vb"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>Resources.resx</DependentUpon> </Compile> <Compile Include="My Project\MyEvents.vb"> <SubType>Code</SubType> </Compile> <Compile Include="UnmanagedClass.vb"> <SubType>Code</SubType> </Compile> <None Include="app.config" /> <None Include="My Project\ClientSettings.settings" /> <EmbeddedResource Include="My Project\Resources.resx"> <Generator>VbMyResourcesResXFileCodeGenerator</Generator> <LastGenOutput>Resources.Designer.vb</LastGenOutput> <CustomToolNamespace>My.Resources</CustomToolNamespace> <SubType>Designer</SubType> </EmbeddedResource> <AppDesigner Include="My Project\" /> </ItemGroup> <ItemGroup> <Content Include="My Project\Application.myapp"> <Generator>MyApplicationCodeGenerator</Generator> <LastGenOutput>Application.Designer.vb</LastGenOutput> </Content> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" /> </Project>