microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ec1a127c43e511cfaf5bdb778f936623a42ef74b

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

dotnet/autoShell/autoShell.csproj

78lines · modecode

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>{7D095B6C-7EC1-4127-B1EA-8D7DC91A1C1C}</ProjectGuid>
8 <OutputType>Exe</OutputType>
9 <RootNamespace>autoShell</RootNamespace>
10 <AssemblyName>autoShell</AssemblyName>
11 <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
12 <FileAlignment>512</FileAlignment>
13 <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14 <Deterministic>true</Deterministic>
15 </PropertyGroup>
16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17 <PlatformTarget>AnyCPU</PlatformTarget>
18 <DebugSymbols>true</DebugSymbols>
19 <DebugType>full</DebugType>
20 <Optimize>false</Optimize>
21 <OutputPath>bin\Debug\</OutputPath>
22 <DefineConstants>DEBUG;TRACE</DefineConstants>
23 <ErrorReport>prompt</ErrorReport>
24 <WarningLevel>4</WarningLevel>
25 </PropertyGroup>
26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27 <PlatformTarget>AnyCPU</PlatformTarget>
28 <DebugType>pdbonly</DebugType>
29 <Optimize>true</Optimize>
30 <OutputPath>bin\Release\</OutputPath>
31 <DefineConstants>TRACE</DefineConstants>
32 <ErrorReport>prompt</ErrorReport>
33 <WarningLevel>4</WarningLevel>
34 </PropertyGroup>
35 <ItemGroup>
36 <Reference Include="AudioSwitcher.AudioApi, Version=3.0.0.209, Culture=neutral, PublicKeyToken=fda5729e2db3a64f, processorArchitecture=MSIL">
37 <HintPath>packages\AudioSwitcher.AudioApi.3.0.0\lib\net40\AudioSwitcher.AudioApi.dll</HintPath>
38 </Reference>
39 <Reference Include="AudioSwitcher.AudioApi.CoreAudio, Version=3.0.0.209, Culture=neutral, PublicKeyToken=fda5729e2db3a64f, processorArchitecture=MSIL">
40 <HintPath>packages\AudioSwitcher.AudioApi.CoreAudio.3.0.3\lib\net48\AudioSwitcher.AudioApi.CoreAudio.dll</HintPath>
41 </Reference>
42 <Reference Include="CustomMarshalers" />
43 <Reference Include="Microsoft.VisualBasic" />
44 <Reference Include="Microsoft.WindowsAPICodePack, Version=1.1.5.0, Culture=neutral, PublicKeyToken=8985beaab7ea3f04, processorArchitecture=MSIL">
45 <HintPath>packages\Microsoft-WindowsAPICodePack-Core.1.1.5\lib\net48\Microsoft.WindowsAPICodePack.dll</HintPath>
46 </Reference>
47 <Reference Include="Microsoft.WindowsAPICodePack.Shell, Version=1.1.5.0, Culture=neutral, PublicKeyToken=8985beaab7ea3f04, processorArchitecture=MSIL">
48 <HintPath>packages\Microsoft-WindowsAPICodePack-Shell.1.1.5\lib\net48\Microsoft.WindowsAPICodePack.Shell.dll</HintPath>
49 </Reference>
50 <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
51 <HintPath>packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
52 </Reference>
53 <Reference Include="PresentationCore" />
54 <Reference Include="PresentationFramework" />
55 <Reference Include="System" />
56 <Reference Include="System.Core" />
57 <Reference Include="System.Drawing" />
58 <Reference Include="System.Windows.Forms" />
59 <Reference Include="System.Xaml" />
60 <Reference Include="System.Xml.Linq" />
61 <Reference Include="System.Data.DataSetExtensions" />
62 <Reference Include="Microsoft.CSharp" />
63 <Reference Include="System.Data" />
64 <Reference Include="System.Net.Http" />
65 <Reference Include="System.Xml" />
66 <Reference Include="WindowsBase" />
67 <Reference Include="WindowsFormsIntegration" />
68 </ItemGroup>
69 <ItemGroup>
70 <Compile Include="AutoShell.cs" />
71 <Compile Include="Properties\AssemblyInfo.cs" />
72 </ItemGroup>
73 <ItemGroup>
74 <None Include="App.config" />
75 <None Include="packages.config" />
76 </ItemGroup>
77 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
78</Project>