Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(68)

Unified Diff: Tools/Google.Build.Utils/Extensions.cs

Issue 12767046: Issue 377: New build for releasing a new version (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: david comments Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Tools/Google.Build.Utils/DirUtils.cs ('k') | Tools/Google.Build.Utils/Google.Build.Utils.csproj » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Google.Build.Utils/Extensions.cs
===================================================================
deleted file mode 100644
--- a/Tools/Google.Build.Utils/Extensions.cs
/dev/null
@@ -1,45 0,0 @@
-/*
-Copyright 2011 Google Inc
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-using System;
-using System.IO;
-using System.Linq;
-using System.Reflection;
-
-/// <summary>
-/// Class providing extension methods to existing classes.
-/// </summary>
-public static class Extensions
-{
- /// <summary>
- /// Returns the path to the codebase of this assembly.
- /// </summary>
- public static string GetCodebasePath(this Assembly assembly)
- {
- // Convert the file:// specification into a local path.
- Uri codebase = new Uri(assembly.CodeBase);
-
- // Get the real filename (.dll instead of .DLL).
- return GetCorrectCasedFile(codebase.LocalPath);
- }
-
- private static string GetCorrectCasedFile(string file)
- {
- // There is apparently no better way to do this on windows
- return Directory.GetFiles(Path.GetDirectoryName(file), Path.GetFileName(file)).Single();
- }
-}
-
« no previous file with comments | « Tools/Google.Build.Utils/DirUtils.cs ('k') | Tools/Google.Build.Utils/Google.Build.Utils.csproj » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b