Commit dd2089edd53bf6af4498632f56d033b287e3f343
1 parent
17f064f8
commit .csproj and .user
Showing
2 changed files
with
25 additions
and
2 deletions
400-SOURCECODE/AIAHTML5.API/AIAHTML5.API.csproj
... | ... | @@ -39,7 +39,23 @@ |
39 | 39 | </PropertyGroup> |
40 | 40 | <ItemGroup> |
41 | 41 | <Reference Include="Microsoft.CSharp" /> |
42 | + <Reference Include="MongoDB.Bson, Version=2.4.0.70, Culture=neutral, processorArchitecture=MSIL"> | |
43 | + <HintPath>..\packages\MongoDB.Bson.2.4.0\lib\net45\MongoDB.Bson.dll</HintPath> | |
44 | + <Private>True</Private> | |
45 | + </Reference> | |
46 | + <Reference Include="MongoDB.Driver, Version=2.4.0.70, Culture=neutral, processorArchitecture=MSIL"> | |
47 | + <HintPath>..\packages\MongoDB.Driver.2.4.0\lib\net45\MongoDB.Driver.dll</HintPath> | |
48 | + <Private>True</Private> | |
49 | + </Reference> | |
50 | + <Reference Include="MongoDB.Driver.Core, Version=2.4.0.70, Culture=neutral, processorArchitecture=MSIL"> | |
51 | + <HintPath>..\packages\MongoDB.Driver.Core.2.4.0\lib\net45\MongoDB.Driver.Core.dll</HintPath> | |
52 | + <Private>True</Private> | |
53 | + </Reference> | |
42 | 54 | <Reference Include="System.Net.Http" /> |
55 | + <Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> | |
56 | + <HintPath>..\packages\System.Runtime.InteropServices.RuntimeInformation.4.0.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath> | |
57 | + <Private>True</Private> | |
58 | + </Reference> | |
43 | 59 | <Reference Include="System.Web.DynamicData" /> |
44 | 60 | <Reference Include="System.Web.Entity" /> |
45 | 61 | <Reference Include="System.Web.ApplicationServices" /> |
... | ... | @@ -77,9 +93,11 @@ |
77 | 93 | </ItemGroup> |
78 | 94 | <ItemGroup> |
79 | 95 | <Compile Include="App_Start\WebApiConfig.cs" /> |
96 | + <Compile Include="Controllers\AuthenticateController.cs" /> | |
80 | 97 | <Compile Include="Global.asax.cs"> |
81 | 98 | <DependentUpon>Global.asax</DependentUpon> |
82 | 99 | </Compile> |
100 | + <Compile Include="Models\Users.cs" /> | |
83 | 101 | <Compile Include="Properties\AssemblyInfo.cs" /> |
84 | 102 | </ItemGroup> |
85 | 103 | <ItemGroup> |
... | ... | @@ -93,8 +111,6 @@ |
93 | 111 | </ItemGroup> |
94 | 112 | <ItemGroup> |
95 | 113 | <Folder Include="App_Data\" /> |
96 | - <Folder Include="Controllers\" /> | |
97 | - <Folder Include="Models\" /> | |
98 | 114 | </ItemGroup> |
99 | 115 | <PropertyGroup> |
100 | 116 | <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion> | ... | ... |
400-SOURCECODE/AIAHTML5.API/AIAHTML5.API.csproj.user
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 2 | <Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
3 | + <PropertyGroup> | |
4 | + <WebStackScaffolding_IsLayoutPageSelected>True</WebStackScaffolding_IsLayoutPageSelected> | |
5 | + <WebStackScaffolding_IsPartialViewSelected>False</WebStackScaffolding_IsPartialViewSelected> | |
6 | + <WebStackScaffolding_IsReferencingScriptLibrariesSelected>True</WebStackScaffolding_IsReferencingScriptLibrariesSelected> | |
7 | + <WebStackScaffolding_LayoutPageFile /> | |
8 | + <WebStackScaffolding_IsAsyncSelected>False</WebStackScaffolding_IsAsyncSelected> | |
9 | + </PropertyGroup> | |
3 | 10 | <ProjectExtensions> |
4 | 11 | <VisualStudio> |
5 | 12 | <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}"> | ... | ... |