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')" />
4- <PropertyGroup >
5- <Configuration Condition =" '$(Configuration)' == '' " >Debug</Configuration >
6- <Platform Condition =" '$(Platform)' == '' " >AnyCPU</Platform >
7- <ProjectGuid >{1834BEA8-2331-4A44-86C9-CC764BCA0761}</ProjectGuid >
8- <OutputType >Library</OutputType >
9- <AppDesignerFolder >Properties</AppDesignerFolder >
10- <RootNamespace >Simplify.Web.MessageBox</RootNamespace >
11- <AssemblyName >Simplify.Web.MessageBox</AssemblyName >
12- <TargetFrameworkVersion >v4.5.2</TargetFrameworkVersion >
13- <FileAlignment >512</FileAlignment >
14- <TargetFrameworkProfile />
15- </PropertyGroup >
16- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
17- <DebugSymbols >true</DebugSymbols >
18- <DebugType >full</DebugType >
19- <Optimize >false</Optimize >
20- <OutputPath >bin\Debug\</OutputPath >
21- <DefineConstants >DEBUG;TRACE</DefineConstants >
22- <ErrorReport >prompt</ErrorReport >
23- <WarningLevel >4</WarningLevel >
24- </PropertyGroup >
25- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
26- <DebugType >pdbonly</DebugType >
27- <Optimize >true</Optimize >
28- <OutputPath >bin\Release\</OutputPath >
29- <DefineConstants >TRACE</DefineConstants >
30- <ErrorReport >prompt</ErrorReport >
31- <WarningLevel >4</WarningLevel >
32- <DocumentationFile >bin\Release\Simplify.Web.MessageBox.xml</DocumentationFile >
33- <TreatWarningsAsErrors >true</TreatWarningsAsErrors >
34- </PropertyGroup >
35- <ItemGroup >
36- <Compile Include =" IMessageBoxHandler.cs" />
37- <Compile Include =" MessageBoxHandler.cs" />
38- <Compile Include =" MessageBoxStatus.cs" />
39- <Compile Include =" Properties\AssemblyInfo.cs" />
40- <Compile Include =" Responses\MessageBox.cs" />
41- <Compile Include =" Responses\MessageBoxInline.cs" />
42- </ItemGroup >
43- <ItemGroup >
44- <Reference Include =" Microsoft.CSharp" />
45- <Reference Include =" Microsoft.Owin, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" >
46- <HintPath >..\packages\Microsoft.Owin.3.1.0\lib\net45\Microsoft.Owin.dll</HintPath >
47- </Reference >
48- <Reference Include =" Owin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f0ebd12fd5e55cc5, processorArchitecture=MSIL" >
49- <HintPath >..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath >
50- <Private >True</Private >
51- </Reference >
52- <Reference Include =" Simplify.DI, Version=1.2.1.0, Culture=neutral, processorArchitecture=MSIL" >
53- <HintPath >..\packages\Simplify.DI.1.2.1\lib\net452\Simplify.DI.dll</HintPath >
54- </Reference >
55- <Reference Include =" Simplify.Templates, Version=1.3.0.0, Culture=neutral, processorArchitecture=MSIL" >
56- <HintPath >..\packages\Simplify.Templates.1.3.0\lib\net452\Simplify.Templates.dll</HintPath >
57- </Reference >
58- <Reference Include =" Simplify.Web, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL" >
59- <HintPath >..\packages\Simplify.Web.1.2.0\lib\net452\Simplify.Web.dll</HintPath >
60- </Reference >
61- <Reference Include =" System" />
62- <Reference Include =" System.IO.Abstractions, Version=2.0.0.144, Culture=neutral, processorArchitecture=MSIL" >
63- <HintPath >..\packages\System.IO.Abstractions.2.0.0.144\lib\net40\System.IO.Abstractions.dll</HintPath >
64- </Reference >
65- </ItemGroup >
66- <ItemGroup >
67- <None Include =" packages.config" />
68- <None Include =" Simplify.Web.MessageBox.nuspec" />
69- <None Include =" Templates\App_Packages\Simplify.Web.MessageBox\ErrorMessageBox.tpl" />
70- <None Include =" Templates\App_Packages\Simplify.Web.MessageBox\InfoMessageBox.tpl" />
71- <None Include =" Templates\App_Packages\Simplify.Web.MessageBox\InlineErrorMessageBox.tpl" />
72- <None Include =" Templates\App_Packages\Simplify.Web.MessageBox\InlineInfoMessageBox.tpl" />
73- <None Include =" Templates\App_Packages\Simplify.Web.MessageBox\InlineOkMessageBox.tpl" />
74- <None Include =" Templates\App_Packages\Simplify.Web.MessageBox\OkMessageBox.tpl" />
75- </ItemGroup >
76- <ItemGroup />
77- <Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
78- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
79- Other similar extension points exist, see Microsoft.Common.targets.
80- <Target Name="BeforeBuild">
81- </Target>
82- <Target Name="AfterBuild">
83- </Target>
84- -->
85- </Project >
1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+ <PropertyGroup >
3+ <TargetFrameworks >net452</TargetFrameworks >
4+ <Authors >Alexander Krylkov</Authors >
5+ <Product >Simplify</Product >
6+ <Description >Simplify.Web static message box templates and controller response</Description >
7+ <Copyright >Licensed under LGPL</Copyright >
8+ <Version >1.1.2</Version >
9+ <PackageProjectUrl >https://github.com/i4004/Simplify.Web.MessageBox</PackageProjectUrl >
10+ <PackageIconUrl >https://raw.githubusercontent.com/i4004/Simplify.Web/master/Images/Icon.png</PackageIconUrl >
11+ <RepositoryUrl >https://github.com/i4004/Simplify.Web.MessageBox</RepositoryUrl >
12+ <RepositoryType >GIT</RepositoryType >
13+ <PackageTags >Simplify.Web</PackageTags >
14+ <PackageReleaseNotes >
15+ </PackageReleaseNotes >
16+ <OutputPath >bin\Any CPU\$(Configuration)\</OutputPath >
17+ <DocumentationFile >bin\Any CPU\$(Configuration)\$(TargetFramework)\Simplify.Web.MessageBox.xml</DocumentationFile >
18+ <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
19+ </PropertyGroup >
20+ <ItemGroup >
21+ <Content Include =" Templates\App_Packages\Simplify.Web.MessageBox\ErrorMessageBox.tpl" />
22+ <Content Include =" Templates\App_Packages\Simplify.Web.MessageBox\InfoMessageBox.tpl" />
23+ <Content Include =" Templates\App_Packages\Simplify.Web.MessageBox\InlineErrorMessageBox.tpl" />
24+ <Content Include =" Templates\App_Packages\Simplify.Web.MessageBox\InlineInfoMessageBox.tpl" />
25+ <Content Include =" Templates\App_Packages\Simplify.Web.MessageBox\InlineOkMessageBox.tpl" />
26+ <Content Include =" Templates\App_Packages\Simplify.Web.MessageBox\OkMessageBox.tpl" />
27+ </ItemGroup >
28+ <ItemGroup >
29+ <PackageReference Include =" Simplify.Web" Version =" 1.2.1" />
30+ </ItemGroup >
31+ </Project >
0 commit comments