ProcessWatchdog.csproj 2.1 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- Copyright (c)  Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information. -->
3
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
  <Import Project="..\..\..\build\Targets\SettingsSdk.props" />
5 6
  <PropertyGroup>
    <NonShipping>True</NonShipping>
7
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
8
    <PlatformTarget>AnyCPU</PlatformTarget>
9
    <OutputType>Exe</OutputType>
10
    <TargetFramework>net46</TargetFramework>
11
    <RuntimeIdentifier>$(RoslynDesktopRuntimeIdentifier)</RuntimeIdentifier>
T
Tomas Matousek 已提交
12
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
13
    <SignAssembly>false</SignAssembly>
14
  </PropertyGroup>
15 16
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
17 18 19
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core" />
20
    <Reference Include="System.Drawing" />
21
    <Reference Include="System.Management" />
22
    <Reference Include="System.Windows.Forms" />
23 24 25
    <Reference Include="System.Xml.Linq" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Xml" />
26 27 28
    <PackageReference Include="CommandLineParser" Version="$(CommandLineParserVersion)" />
    <PackageReference Include="System.Collections.Immutable" Version="$(SystemCollectionsImmutableVersion)" />
    <PackageReference Include="System.Reflection.Metadata" Version="$(SystemReflectionMetadataVersion)" />
29 30
  </ItemGroup>
  <ItemGroup>
31
    <Compile Update="Resources.Designer.cs">
L
Larry Golding 已提交
32 33 34 35
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile>
36
  </ItemGroup>
L
Larry Golding 已提交
37
  <ItemGroup>
38
    <EmbeddedResource Update="Resources.resx">
L
Larry Golding 已提交
39 40 41 42
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
  </ItemGroup>
J
Jared Parsons 已提交
43
  <Import Project="..\..\..\build\Targets\Imports.targets" />
J
Jared Parsons 已提交
44
</Project>