Skip to content

Commit 1767d92

Browse files
authored
Merge pull request #27 from microsoftgraph/feature/ms-id-web-package
- fixes: #23 replaces git submodule by library reference
2 parents 3099b0c + 8458c52 commit 1767d92

File tree

5 files changed

+2
-28
lines changed

5 files changed

+2
-28
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

GraphWebhooks-Core.sln

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1212
EndProject
1313
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GraphWebhooks-Core", "src\GraphWebhooks-Core\GraphWebhooks-Core.csproj", "{F8984AA5-E168-48C4-B52D-BF50226A55D9}"
1414
EndProject
15-
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}"
16-
EndProject
17-
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}"
18-
EndProject
1915
Global
2016
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2117
Debug|Any CPU = Debug|Any CPU
@@ -26,14 +22,6 @@ Global
2622
{F8984AA5-E168-48C4-B52D-BF50226A55D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
2723
{F8984AA5-E168-48C4-B52D-BF50226A55D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
2824
{F8984AA5-E168-48C4-B52D-BF50226A55D9}.Release|Any CPU.Build.0 = Release|Any CPU
29-
{88FFB5AA-1C4A-4D6B-9DFC-A193574375AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
30-
{88FFB5AA-1C4A-4D6B-9DFC-A193574375AB}.Debug|Any CPU.Build.0 = Debug|Any CPU
31-
{88FFB5AA-1C4A-4D6B-9DFC-A193574375AB}.Release|Any CPU.ActiveCfg = Release|Any CPU
32-
{88FFB5AA-1C4A-4D6B-9DFC-A193574375AB}.Release|Any CPU.Build.0 = Release|Any CPU
33-
{BAD341BE-7787-4D1B-8F1E-5DDEB00138E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
34-
{BAD341BE-7787-4D1B-8F1E-5DDEB00138E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
35-
{BAD341BE-7787-4D1B-8F1E-5DDEB00138E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
36-
{BAD341BE-7787-4D1B-8F1E-5DDEB00138E3}.Release|Any CPU.Build.0 = Release|Any CPU
3725
EndGlobalSection
3826
GlobalSection(SolutionProperties) = preSolution
3927
HideSolutionNode = FALSE

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,6 @@ After the app creates a subscription, Microsoft Graph sends a notification to th
6868

6969
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.
7070

71-
This project uses git submodules. After cloning the repository, make sure you execute the following commands:
72-
73-
```shell
74-
git submodule init
75-
git submodule update
76-
```
77-
7871
### Prerequisites
7972

8073
To use the Microsoft Graph Webhook Sample for ASP.NET Core, you need the following:

microsoft-identity-web

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/GraphWebhooks-Core/GraphWebhooks-Core.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,15 @@
3333
<PackageReference Include="Microsoft.AspNetCore.SignalR.Core" Version="1.1.0" />
3434
<PackageReference Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="3.1.3" />
3535
<PackageReference Include="Microsoft.Graph.Beta" Version="0.14.0-preview" />
36+
<PackageReference Include="Microsoft.Identity.Web" Version="0.1.0-preview" />
37+
<PackageReference Include="Microsoft.Identity.Web.UI" Version="0.1.0-preview" />
3638
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="2.2.0" />
3739
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="3.1.3" />
3840
<PackageReference Include="Microsoft.AspNetCore.Connections.Abstractions" Version="3.1.3" />
3941
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.2.0" />
4042
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.2" />
4143
</ItemGroup>
4244

43-
<ItemGroup>
44-
<ProjectReference Include="..\..\microsoft-identity-web\src\Microsoft.Identity.Web.UI\Microsoft.Identity.Web.UI.csproj" />
45-
<ProjectReference Include="..\..\microsoft-identity-web\src\Microsoft.Identity.Web\Microsoft.Identity.Web.csproj" />
46-
</ItemGroup>
47-
4845
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
4946
<Exec Command="bower install" />
5047
<Exec Command="dotnet bundle" />

0 commit comments

Comments
 (0)