1
- <Project Sdk =" Microsoft.NET.Sdk" >
2
-
3
- <PropertyGroup Label =" Configuration" Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
4
- <OutputType >exe</OutputType >
5
- </PropertyGroup >
6
-
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <Project ToolsVersion =" 14.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
+ <Import Project =" $(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition =" Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
7
4
<PropertyGroup >
8
- <Description >DirSearcherClient Console Application</Description >
9
- <Authors >Vittorio</Authors >
10
- <TargetFramework >netcoreapp1.0</TargetFramework >
5
+ <Configuration Condition =" '$(Configuration)' == '' " >Debug</Configuration >
6
+ <Platform Condition =" '$(Platform)' == '' " >AnyCPU</Platform >
7
+ <ProjectGuid >{4B81F1A9-4A60-4793-ABEE-85546AAA480E}</ProjectGuid >
8
+ <OutputType >Exe</OutputType >
9
+ <AppDesignerFolder >Properties</AppDesignerFolder >
10
+ <RootNamespace >DeviceProfileSample</RootNamespace >
11
11
<AssemblyName >DeviceProfileSample</AssemblyName >
12
- <PackageId >DirSearcherClient</PackageId >
13
- <GenerateAssemblyTitleAttribute >false</GenerateAssemblyTitleAttribute >
14
- <GenerateAssemblyDescriptionAttribute >false</GenerateAssemblyDescriptionAttribute >
15
- <GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
16
- <GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
17
- <GenerateAssemblyProductAttribute >false</GenerateAssemblyProductAttribute >
18
- <GenerateAssemblyCopyrightAttribute >false</GenerateAssemblyCopyrightAttribute >
19
- <ApplicationIcon />
20
- <OutputTypeEx >exe</OutputTypeEx >
21
- <StartupObject />
12
+ <TargetFrameworkVersion >v4.5.2</TargetFrameworkVersion >
13
+ <FileAlignment >512</FileAlignment >
14
+ <AutoGenerateBindingRedirects >true</AutoGenerateBindingRedirects >
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 >
22
34
</PropertyGroup >
23
-
24
35
<ItemGroup >
25
- <PackageReference Include =" Microsoft.IdentityModel.Clients.ActiveDirectory" Version =" 3.13.8" />
26
- <PackageReference Include =" Newtonsoft.Json" Version =" 9.0.1" />
36
+ <Reference Include =" Microsoft.IdentityModel.Clients.ActiveDirectory, Version=3.14.1.10, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" >
37
+ <HintPath >packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.1\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath >
38
+ <Private >True</Private >
39
+ </Reference >
40
+ <Reference Include =" Microsoft.IdentityModel.Clients.ActiveDirectory.Platform, Version=3.14.1.10, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" >
41
+ <HintPath >packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.14.1\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath >
42
+ <Private >True</Private >
43
+ </Reference >
44
+ <Reference Include =" Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
45
+ <HintPath >packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath >
46
+ <Private >True</Private >
47
+ </Reference >
48
+ <Reference Include =" System" />
49
+ <Reference Include =" System.Core" />
50
+ <Reference Include =" System.Xml.Linq" />
51
+ <Reference Include =" System.Data.DataSetExtensions" />
52
+ <Reference Include =" Microsoft.CSharp" />
53
+ <Reference Include =" System.Data" />
54
+ <Reference Include =" System.Net.Http" />
55
+ <Reference Include =" System.Xml" />
27
56
</ItemGroup >
28
-
29
- <ItemGroup Condition =" '$(TargetFramework)' == 'dnxcore50' " >
30
- <PackageReference Include =" Microsoft.CSharp" Version =" 4.0.1" />
31
- <PackageReference Include =" System.Collections" Version =" 4.0.11" />
32
- <PackageReference Include =" System.Console" Version =" 4.0.0" />
33
- <PackageReference Include =" System.Linq" Version =" 4.1.0" />
34
- <PackageReference Include =" System.Threading" Version =" 4.0.11" />
35
- <PackageReference Include =" System.Net.Http" Version =" 4.1.1" />
57
+ <ItemGroup >
58
+ <Compile Include =" Program.cs" />
59
+ <Compile Include =" Properties\AssemblyInfo.cs" />
60
+ </ItemGroup >
61
+ <ItemGroup >
62
+ <None Include =" App.config" />
63
+ <None Include =" packages.config" />
36
64
</ItemGroup >
37
-
38
- </Project >
65
+ <Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
66
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
67
+ Other similar extension points exist, see Microsoft.Common.targets.
68
+ <Target Name="BeforeBuild">
69
+ </Target>
70
+ <Target Name="AfterBuild">
71
+ </Target>
72
+ -->
73
+ </Project >
0 commit comments