OpenAuth.Net/OpenAuth.App/OpenAuth.App.csproj

117 lines
5.9 KiB
XML
Raw Normal View History

2015-09-22 23:10:00 +08:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{0BBF2D65-FFFD-4272-B138-8EA4FB6FEC48}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>OpenAuth.App</RootNamespace>
<AssemblyName>OpenAuth.App</AssemblyName>
2015-10-26 21:58:12 +08:00
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2015-09-22 23:10:00 +08:00
<FileAlignment>512</FileAlignment>
2015-10-26 21:58:12 +08:00
<TargetFrameworkProfile />
2015-09-22 23:10:00 +08:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-10-26 21:58:12 +08:00
<Prefer32Bit>false</Prefer32Bit>
2015-09-22 23:10:00 +08:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-10-26 21:58:12 +08:00
<Prefer32Bit>false</Prefer32Bit>
2015-09-22 23:10:00 +08:00
</PropertyGroup>
<ItemGroup>
2016-07-08 11:28:38 +08:00
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
<Private>True</Private>
</Reference>
2015-09-22 23:10:00 +08:00
<Reference Include="System" />
2016-07-08 11:28:38 +08:00
<Reference Include="System.Configuration" />
2015-09-22 23:10:00 +08:00
<Reference Include="System.Core" />
<Reference Include="System.Web" />
2016-07-08 11:28:38 +08:00
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.Helpers.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
<Private>True</Private>
</Reference>
2015-09-22 23:10:00 +08:00
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
2015-12-15 23:04:20 +08:00
<Compile Include="CategoryManagerApp.cs" />
2015-09-22 23:10:00 +08:00
<Compile Include="LoginApp.cs" />
2015-12-02 16:28:01 +08:00
<Compile Include="ModuleElementManagerApp.cs" />
2015-11-21 23:56:39 +08:00
<Compile Include="ModuleManagerApp.cs" />
<Compile Include="ResourceManagerApp.cs" />
<Compile Include="RevelanceManagerApp.cs" />
2015-11-19 21:49:39 +08:00
<Compile Include="RoleManagerApp.cs" />
2016-07-08 11:28:38 +08:00
<Compile Include="SSO\AuthUtil.cs" />
<Compile Include="SSO\LoginResult.cs" />
<Compile Include="SSO\SSOAuthAttribute.cs" />
<Compile Include="StockManagerApp.cs" />
2015-11-13 21:33:53 +08:00
<Compile Include="UserManagerApp.cs" />
2015-09-22 23:10:00 +08:00
<Compile Include="Properties\AssemblyInfo.cs" />
2015-10-26 21:58:12 +08:00
<Compile Include="OrgManagerApp.cs" />
2015-12-01 17:30:24 +08:00
<Compile Include="ViewModel\LoginUserVM.cs" />
<Compile Include="ViewModel\ModuleElementVM.cs" />
2015-11-22 21:32:38 +08:00
<Compile Include="ViewModel\ModuleView.cs" />
2015-11-30 00:12:42 +08:00
<Compile Include="ViewModel\RoleVM.cs" />
2015-11-13 21:33:53 +08:00
<Compile Include="ViewModel\UserView.cs" />
2015-09-22 23:10:00 +08:00
</ItemGroup>
<ItemGroup>
2015-10-30 23:14:31 +08:00
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj">
<Project>{5FEAEC9A-4F1E-4EE7-B377-9DB1B0870DAC}</Project>
<Name>Infrastructure</Name>
</ProjectReference>
2015-09-22 23:10:00 +08:00
<ProjectReference Include="..\OpenAuth.Domain\OpenAuth.Domain.csproj">
<Project>{6108da8e-92a1-4abe-b9f5-26d64d55ca2c}</Project>
<Name>OpenAuth.Domain</Name>
</ProjectReference>
</ItemGroup>
2016-07-08 11:28:38 +08:00
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
2015-11-13 21:33:53 +08:00
<ItemGroup />
2015-09-22 23:10:00 +08:00
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
2015-04-15 23:57:36 +08:00
</Project>