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

73 lines
3.2 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>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Web" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="LoginApp.cs" />
2015-11-21 23:56:39 +08:00
<Compile Include="ModuleManagerApp.cs" />
2015-11-19 21:49:39 +08:00
<Compile Include="RoleManagerApp.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-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>
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>