Skip to content

Commit bb49cf5

Browse files
committed
Added license headers
1 parent bebd9d0 commit bb49cf5

18 files changed

+90
-19
lines changed

ContosoNotes/App.xaml.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using CommunityToolkit.Net.Authentication;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using CommunityToolkit.Net.Authentication;
26
using CommunityToolkit.Uwp.Authentication;
37
using ContosoNotes.Views;
48
using System;

ContosoNotes/Common/JsonObjectSerializer.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using Microsoft.Toolkit.Uwp.Helpers;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using Microsoft.Toolkit.Uwp.Helpers;
26
using Newtonsoft.Json;
37
using System;
48
using System.Reflection;

ContosoNotes/Common/LoadingState.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
namespace ContosoNotes.Common
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
namespace ContosoNotes.Common
26
{
37
public enum LoadingState
48
{

ContosoNotes/KeywordDetector.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using ContosoNotes.Models;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using ContosoNotes.Models;
26
using System;
37
using System.Collections.Generic;
48

ContosoNotes/Models/NoteItemModel.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using Microsoft.Toolkit.Mvvm.ComponentModel;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using Microsoft.Toolkit.Mvvm.ComponentModel;
26

37
namespace ContosoNotes.Models
48
{

ContosoNotes/Models/NotePageModel.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using Microsoft.Toolkit.Mvvm.ComponentModel;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using Microsoft.Toolkit.Mvvm.ComponentModel;
26
using Newtonsoft.Json;
37
using System;
48
using System.Collections.Generic;

ContosoNotes/Models/NotesListItemModel.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using Microsoft.Toolkit.Mvvm.ComponentModel;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using Microsoft.Toolkit.Mvvm.ComponentModel;
26

37
namespace ContosoNotes.Models
48
{

ContosoNotes/Models/NotesListModel.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using Microsoft.Toolkit.Mvvm.ComponentModel;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using Microsoft.Toolkit.Mvvm.ComponentModel;
26
using System.Collections.Generic;
37
using System.Collections.ObjectModel;
48

ContosoNotes/Models/TaskNoteItemModel.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using CommunityToolkit.Net.Authentication;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using CommunityToolkit.Net.Authentication;
26
using CommunityToolkit.Net.Graph.Extensions;
37
using ContosoNotes.Common;
48
using Microsoft.Graph;

ContosoNotes/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
using System.Reflection;
2-
using System.Runtime.CompilerServices;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using System.Reflection;
36
using System.Runtime.InteropServices;
47

58
// General Information about an assembly is controlled through the following

0 commit comments

Comments
 (0)