Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Delegates.cs « Microsoft.NuGet.Build.Tasks « src - github.com/mono/NuGet.BuildTasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5eed52919e8054985b2656869459705652f45310 (plain)
1
2
3
4
5
6
7
8
// Copyright (c) .NET Foundation. All rights reserved. 
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. 

namespace Microsoft.NuGet.Build.Tasks
{
    internal delegate bool FileExists(string path);
    internal delegate string TryGetRuntimeVersion(string path);
}