markus / ConvertService / ServiceBase / Markus.Mvvm.ToolKit / Markus.Mvvm.ToolKit.csproj @ 45f9a2ad
이력 | 보기 | 이력해설 | 다운로드 (3.07 KB)
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 Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^net\d'))"> |
5 |
<DefineConstants>NETFRAMEWORK</DefineConstants> |
6 |
</PropertyGroup> |
7 |
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^netstandard\d'))"> |
8 |
<DefineConstants>NETSTANDARD</DefineConstants> |
9 |
</PropertyGroup> |
10 |
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^netcoreapp\d'))"> |
11 |
<DefineConstants>NETCORE</DefineConstants> |
12 |
</PropertyGroup> |
13 |
<PropertyGroup> |
14 |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
15 |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
16 |
<ProjectGuid>{9EFE95D6-9985-422A-A76F-285C8CF73617}</ProjectGuid> |
17 |
<OutputType>Library</OutputType> |
18 |
<AppDesignerFolder>Properties</AppDesignerFolder> |
19 |
<RootNamespace>Markus.Mvvm.ToolKit</RootNamespace> |
20 |
<AssemblyName>Markus.Mvvm.ToolKit</AssemblyName> |
21 |
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> |
22 |
<FileAlignment>512</FileAlignment> |
23 |
<Deterministic>true</Deterministic> |
24 |
</PropertyGroup> |
25 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
26 |
<DebugSymbols>true</DebugSymbols> |
27 |
<DebugType>full</DebugType> |
28 |
<Optimize>false</Optimize> |
29 |
<OutputPath>bin\Debug\</OutputPath> |
30 |
<DefineConstants>TRACE;DEBUG</DefineConstants> |
31 |
<ErrorReport>prompt</ErrorReport> |
32 |
<WarningLevel>4</WarningLevel> |
33 |
</PropertyGroup> |
34 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
35 |
<DebugType>pdbonly</DebugType> |
36 |
<Optimize>true</Optimize> |
37 |
<OutputPath>bin\Release\</OutputPath> |
38 |
<DefineConstants>TRACE</DefineConstants> |
39 |
<ErrorReport>prompt</ErrorReport> |
40 |
<WarningLevel>4</WarningLevel> |
41 |
</PropertyGroup> |
42 |
<ItemGroup> |
43 |
<Reference Include="PresentationCore" /> |
44 |
<Reference Include="System" /> |
45 |
<Reference Include="System.Core" /> |
46 |
<Reference Include="System.Xml.Linq" /> |
47 |
<Reference Include="System.Data.DataSetExtensions" /> |
48 |
<Reference Include="Microsoft.CSharp" /> |
49 |
<Reference Include="System.Data" /> |
50 |
<Reference Include="System.Net.Http" /> |
51 |
<Reference Include="System.Xml" /> |
52 |
</ItemGroup> |
53 |
<ItemGroup> |
54 |
<Compile Include="AsyncCommand\AsyncCommand.cs" /> |
55 |
<Compile Include="RelayCommand\EventRaiser.cs" /> |
56 |
<Compile Include="RelayCommand\RelayCommand.cs" /> |
57 |
<Compile Include="AsyncCommand\IAsyncCommand.cs" /> |
58 |
<Compile Include="AsyncCommand\IErrorHandler.cs" /> |
59 |
<Compile Include="Notification.cs" /> |
60 |
<Compile Include="Properties\AssemblyInfo.cs" /> |
61 |
<Compile Include="TaskUtilities.cs" /> |
62 |
<Compile Include="ViewModelBase.cs" /> |
63 |
</ItemGroup> |
64 |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
65 |
</Project> |