Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/FSKit/FSKitFunctions.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

using System.Diagnostics.CodeAnalysis;

#nullable enable

// Let's hope that by .NET 11 we've ironed out all the bugs in the API.
// This can of course be adjusted as needed (until we've released as stable).
#if NET11_0_OR_GREATER
#define STABLE_FSKIT
#endif

using System.Diagnostics.CodeAnalysis;

#nullable enable

namespace FSKit {
#if !STABLE_FSKIT
[Experimental ("APL0002")]
Expand Down
12 changes: 6 additions & 6 deletions src/fskit.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;

using CoreFoundation;
using Darwin;

// Let's hope that by .NET 11 we've ironed out all the bugs in the API.
// This can of course be adjusted as needed (until we've released as stable).
#if NET11_0_OR_GREATER
#define STABLE_FSKIT
#endif

using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;

using CoreFoundation;
using Darwin;

using FSDirectoryCookie = System.UInt64;
using FSDirectoryVerifier = System.UInt64;
using FSOperationId = System.UIntPtr; // typedef NSUInteger FSOperationID
Expand Down