Skip to content

Commit

Permalink
update src folder links (#1019)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arhell authored Oct 20, 2022
1 parent 52f05c9 commit 54262a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ public static void Legacy_csproj_with_packages_config()
<Import Project='$(MSBuildToolsPath)\Microsoft.CSharp.targets' />
<Target Name='EnsureNuGetPackageBuildImports' BeforeTargets='PrepareForBuild'>
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {{0}}.</ErrorText>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {{0}}.</ErrorText>
</PropertyGroup>
<Error Condition=""!Exists('packages\Microsoft.CodeCoverage.15.9.0\build\netstandard1.0\Microsoft.CodeCoverage.props')"" Text=""$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.CodeCoverage.15.9.0\build\netstandard1.0\Microsoft.CodeCoverage.props'))"" />
<Error Condition=""!Exists('packages\Microsoft.CodeCoverage.15.9.0\build\netstandard1.0\Microsoft.CodeCoverage.targets')"" Text=""$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.CodeCoverage.15.9.0\build\netstandard1.0\Microsoft.CodeCoverage.targets'))"" />
Expand Down Expand Up @@ -605,7 +605,7 @@ public static void Legacy_vbproj_with_packages_config()
<Import Project='$(MSBuildToolsPath)\Microsoft.VisualBasic.targets' />
<Target Name='EnsureNuGetPackageBuildImports' BeforeTargets='PrepareForBuild'>
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {{0}}.</ErrorText>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {{0}}.</ErrorText>
</PropertyGroup>
<Error Condition=""!Exists('packages\Microsoft.CodeCoverage.15.9.0\build\netstandard1.0\Microsoft.CodeCoverage.props')"" Text=""$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.CodeCoverage.15.9.0\build\netstandard1.0\Microsoft.CodeCoverage.props'))"" />
<Error Condition=""!Exists('packages\Microsoft.CodeCoverage.15.9.0\build\netstandard1.0\Microsoft.CodeCoverage.targets')"" Text=""$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.CodeCoverage.15.9.0\build\netstandard1.0\Microsoft.CodeCoverage.targets'))"" />
Expand Down
4 changes: 2 additions & 2 deletions src/NUnitTestAdapter/NUnitEngine/NUnitTestEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,9 @@ public NUnitFailure(string message, string stacktrace)
public class NUnitEventWrongTypeException : Exception
{
// For guidelines regarding the creation of new exception types, see
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconerrorraisinghandlingguidelines.asp
// https://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconerrorraisinghandlingguidelines.asp
// and
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp07192001.asp
// https://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp07192001.asp

public NUnitEventWrongTypeException()
{
Expand Down
4 changes: 2 additions & 2 deletions src/NUnitTestAdapter/NUnitEventListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ public class NUnitEventListener :
public override object InitializeLifetimeService()
{
// Give the listener an infinite lease lifetime by returning null
// http://msdn.microsoft.com/en-us/magazine/cc300474.aspx#edupdate
// https://msdn.microsoft.com/en-us/magazine/cc300474.aspx#edupdate
// This also means RemotingServices.Disconnect() must be called to prevent memory leaks
// http://nbevans.wordpress.com/2011/04/17/memory-leaks-with-an-infinite-lifetime-instance-of-marshalbyrefobject/
// https://nbevans.wordpress.com/2011/04/17/memory-leaks-with-an-infinite-lifetime-instance-of-marshalbyrefobject/
return null;
}
#endif
Expand Down

0 comments on commit 54262a6

Please sign in to comment.