Skip to content

Commit

Permalink
Merge pull request #27 from microsoftgraph/feature/ms-id-web-package
Browse files Browse the repository at this point in the history
- fixes: #23 replaces git submodule by library reference
  • Loading branch information
baywet authored Apr 15, 2020
2 parents 3099b0c + 8458c52 commit 1767d92
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 28 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

12 changes: 0 additions & 12 deletions GraphWebhooks-Core.sln
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GraphWebhooks-Core", "src\GraphWebhooks-Core\GraphWebhooks-Core.csproj", "{F8984AA5-E168-48C4-B52D-BF50226A55D9}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Identity.Web", "microsoft-identity-web\src\Microsoft.Identity.Web\Microsoft.Identity.Web.csproj", "{88FFB5AA-1C4A-4D6B-9DFC-A193574375AB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Identity.Web.UI", "microsoft-identity-web\src\Microsoft.Identity.Web.UI\Microsoft.Identity.Web.UI.csproj", "{BAD341BE-7787-4D1B-8F1E-5DDEB00138E3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -26,14 +22,6 @@ Global
{F8984AA5-E168-48C4-B52D-BF50226A55D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F8984AA5-E168-48C4-B52D-BF50226A55D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F8984AA5-E168-48C4-B52D-BF50226A55D9}.Release|Any CPU.Build.0 = Release|Any CPU
{88FFB5AA-1C4A-4D6B-9DFC-A193574375AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{88FFB5AA-1C4A-4D6B-9DFC-A193574375AB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{88FFB5AA-1C4A-4D6B-9DFC-A193574375AB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{88FFB5AA-1C4A-4D6B-9DFC-A193574375AB}.Release|Any CPU.Build.0 = Release|Any CPU
{BAD341BE-7787-4D1B-8F1E-5DDEB00138E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BAD341BE-7787-4D1B-8F1E-5DDEB00138E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BAD341BE-7787-4D1B-8F1E-5DDEB00138E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BAD341BE-7787-4D1B-8F1E-5DDEB00138E3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,6 @@ After the app creates a subscription, Microsoft Graph sends a notification to th

This sample app subscribes to any resource configured in `appsettings.json` in `SubscriptionSettings:Resource` (default is `me/messages`) for any change configured in `SubscriptionSettings:ChangeType` (default `created,updated`). When receiving any notification, the app then updates a page with information about the resource.

This project uses git submodules. After cloning the repository, make sure you execute the following commands:

```shell
git submodule init
git submodule update
```

### Prerequisites

To use the Microsoft Graph Webhook Sample for ASP.NET Core, you need the following:
Expand Down
1 change: 0 additions & 1 deletion microsoft-identity-web
Submodule microsoft-identity-web deleted from 891302
7 changes: 2 additions & 5 deletions src/GraphWebhooks-Core/GraphWebhooks-Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,15 @@
<PackageReference Include="Microsoft.AspNetCore.SignalR.Core" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="3.1.3" />
<PackageReference Include="Microsoft.Graph.Beta" Version="0.14.0-preview" />
<PackageReference Include="Microsoft.Identity.Web" Version="0.1.0-preview" />
<PackageReference Include="Microsoft.Identity.Web.UI" Version="0.1.0-preview" />
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Connections.Abstractions" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\microsoft-identity-web\src\Microsoft.Identity.Web.UI\Microsoft.Identity.Web.UI.csproj" />
<ProjectReference Include="..\..\microsoft-identity-web\src\Microsoft.Identity.Web\Microsoft.Identity.Web.csproj" />
</ItemGroup>

<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
<Exec Command="bower install" />
<Exec Command="dotnet bundle" />
Expand Down

0 comments on commit 1767d92

Please sign in to comment.