Skip to content

Commit

Permalink
Updated all URLs to https where possible (headers, packages, docs).
Browse files Browse the repository at this point in the history
  • Loading branch information
tillig committed Dec 13, 2018
1 parent 89422ec commit 6dde84e
Show file tree
Hide file tree
Showing 163 changed files with 175 additions and 175 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ You should also include XML API comments in the code. These are used to generate

### Coding Standards

Normal .NET coding guidelines apply. See the [Framework Design Guidelines](http://msdn.microsoft.com/en-us/library/ms229042.aspx>) for suggestions. If you have access to ReSharper, code should be 'green' - that is, have no ReSharper warnings or errors with the default settings.
Normal .NET coding guidelines apply. See the [Framework Design Guidelines](https://msdn.microsoft.com/en-us/library/ms229042.aspx>) for suggestions. If you have access to ReSharper, code should be 'green' - that is, have no ReSharper warnings or errors with the default settings.

Autofac source code uses four spaces for indents (rather than tabs).

[If you have the EditorConfig add-in for your editor of choice (Visual Studio, Sublime Text, etc.)](http://editorconfig.org/), there are `.editorconfig` settings in the various repositories to help make your life easier. VS2017 supports EditorConfig out of the box.
[If you have the EditorConfig add-in for your editor of choice (Visual Studio, Sublime Text, etc.)](https://editorconfig.org/), there are `.editorconfig` settings in the various repositories to help make your life easier. VS2017 supports EditorConfig out of the box.

## Autofac.Extras

Expand Down
4 changes: 2 additions & 2 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Try StackOverflow! If you have a _usage question_ ("How do I...?" "Others have this working but I can't get it...") please try [StackOverflow](http://stackoverflow.com) and tag your question `autofac`. We, along with a great community, monitor those questions.
Try StackOverflow! If you have a _usage question_ ("How do I...?" "Others have this working but I can't get it...") please try [StackOverflow](https://stackoverflow.com) and tag your question `autofac`. We, along with a great community, monitor those questions.

**Have you [read the docs?](http://autofac.readthedocs.io/)**
**Have you [read the docs?](https://autofac.readthedocs.io/)**

**This repo is for core Autofac only.** If you are encountering issues with an integration package (MVC, Web API, etc.) please file it in the appropriate repo. Thanks!

Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
![Autofac](https://autofac.org/img/carousel-logo.png)

Autofac is an [IoC container](http://martinfowler.com/articles/injection.html) for Microsoft .NET. It manages the dependencies between classes so that **applications stay easy to change as they grow** in size and complexity. This is achieved by treating regular .NET classes as *[components](http://autofac.readthedocs.io/en/latest/glossary.html)*.
Autofac is an [IoC container](http://martinfowler.com/articles/injection.html) for Microsoft .NET. It manages the dependencies between classes so that **applications stay easy to change as they grow** in size and complexity. This is achieved by treating regular .NET classes as *[components](https://autofac.readthedocs.io/en/latest/glossary.html)*.

[![Build status](https://ci.appveyor.com/api/projects/status/s0vgb4m8tv9ar7we?svg=true)](https://ci.appveyor.com/project/Autofac/autofac) ![MyGet publish status](https://www.myget.org/BuildSource/Badge/autofac?identifier=e0f25040-634c-4b7d-aebe-0f62b9c465a8) [![Autofac on Stack Overflow](https://img.shields.io/badge/stack%20overflow-autofac-orange.svg)](http://stackoverflow.com/questions/tagged/autofac) [![Join the chat at https://gitter.im/autofac/autofac](https://img.shields.io/gitter/room/autofac/autofac.svg)](https://gitter.im/autofac/autofac) [![NuGet](https://img.shields.io/nuget/v/Autofac.svg)](https://nuget.org/packages/Autofac)
[![Build status](https://ci.appveyor.com/api/projects/status/s0vgb4m8tv9ar7we?svg=true)](https://ci.appveyor.com/project/Autofac/autofac) ![MyGet publish status](https://www.myget.org/BuildSource/Badge/autofac?identifier=e0f25040-634c-4b7d-aebe-0f62b9c465a8) [![Autofac on Stack Overflow](https://img.shields.io/badge/stack%20overflow-autofac-orange.svg)](https://stackoverflow.com/questions/tagged/autofac) [![Join the chat at https://gitter.im/autofac/autofac](https://img.shields.io/gitter/room/autofac/autofac.svg)](https://gitter.im/autofac/autofac) [![NuGet](https://img.shields.io/nuget/v/Autofac.svg)](https://nuget.org/packages/Autofac)

## Get Packages

Expand All @@ -12,15 +12,15 @@ You can get Autofac by [grabbing the latest NuGet packages](https://github.com/a

## Get Help

**Need help with Autofac?** We have [a documentation site](http://autofac.readthedocs.io/) as well as [API documentation](http://autofac.org/apidoc/). We're ready to answer your questions on [Stack Overflow](http://stackoverflow.com/questions/tagged/autofac) or check out the [discussion forum](https://groups.google.com/forum/#forum/autofac).
**Need help with Autofac?** We have [a documentation site](https://autofac.readthedocs.io/) as well as [API documentation](https://autofac.org/apidoc/). We're ready to answer your questions on [Stack Overflow](https://stackoverflow.com/questions/tagged/autofac) or check out the [discussion forum](https://groups.google.com/forum/#forum/autofac).

## Get Started

Our [Getting Started](http://autofac.readthedocs.io/en/latest/getting-started/index.html) tutorial walks you through integrating Autofac with a simple application and gives you some starting points for learning more.
Our [Getting Started](https://autofac.readthedocs.io/en/latest/getting-started/index.html) tutorial walks you through integrating Autofac with a simple application and gives you some starting points for learning more.

Super-duper quick start:

[Register components with a `ContainerBuilder`](http://autofac.readthedocs.io/en/latest/register/registration.html) and then build the component container.
[Register components with a `ContainerBuilder`](https://autofac.readthedocs.io/en/latest/register/registration.html) and then build the component container.

```C#
var builder = new ContainerBuilder();
Expand All @@ -33,19 +33,19 @@ builder.RegisterAssemblyTypes(controllerAssembly);
var container = builder.Build();
```

[Resolve services from a lifetime scope](http://autofac.readthedocs.io/en/latest/resolve/index.html) - either the container or a nested scope:
[Resolve services from a lifetime scope](https://autofac.readthedocs.io/en/latest/resolve/index.html) - either the container or a nested scope:

```C#
var taskController = container.Resolve<TaskController>();
```

There is a growing number of [application integration libraries](http://autofac.readthedocs.io/en/latest/integration/index.html) that make using Autofac with your application a snap. Support for several popular frameworks is also available through the "Extras" packages.
There is a growing number of [application integration libraries](https://autofac.readthedocs.io/en/latest/integration/index.html) that make using Autofac with your application a snap. Support for several popular frameworks is also available through the "Extras" packages.

**[Intrigued? Check out our Getting Started walkthrough!](http://autofac.readthedocs.io/en/latest/getting-started/index.html)**
**[Intrigued? Check out our Getting Started walkthrough!](https://autofac.readthedocs.io/en/latest/getting-started/index.html)**

## Project

Autofac is licensed under the MIT license, so you can comfortably use it in commercial applications (we still love [contributions](http://autofac.readthedocs.io/en/latest/contributors.html) though).
Autofac is licensed under the MIT license, so you can comfortably use it in commercial applications (we still love [contributions](https://autofac.readthedocs.io/en/latest/contributors.html) though).

**File issues in the repo with the associated feature/code.**

Expand Down
2 changes: 1 addition & 1 deletion bench/Autofac.Benchmarks/Harness.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright (c) 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion build/CodeAnalysisDictionary.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Dictionary format defined here: http://msdn.microsoft.com/en-us/library/bb514188.aspx -->
<!-- Dictionary format defined here: https://msdn.microsoft.com/en-us/library/bb514188.aspx -->
<Dictionary>
<Words>
<!--
Expand Down
4 changes: 2 additions & 2 deletions src/Autofac/Autofac.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<PackageTags>autofac;di;ioc;dependencyinjection</PackageTags>
<PackageReleaseNotes>Release notes are at https://github.com/autofac/Autofac/releases</PackageReleaseNotes>
<PackageIconUrl>https://cloud.githubusercontent.com/assets/1156571/13684110/16b8f152-e6bf-11e5-84ae-22c66c6d351a.png</PackageIconUrl>
<PackageProjectUrl>http://autofac.org</PackageProjectUrl>
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
<PackageProjectUrl>https://autofac.org</PackageProjectUrl>
<PackageLicenseUrl>https://opensource.org/licenses/mit-license.php</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/autofac/Autofac</RepositoryUrl>
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.1' ">1.6.0</NetStandardImplicitPackageVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/ConcreteReflectionActivatorData.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/ContainerBuildOptions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/DynamicRegistrationStyle.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/IConcreteActivatorData.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/IHideObjectMembers.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/IRegistrationBuilder.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/MetadataConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/MetadataKeys.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2016 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/ReflectionActivatorData.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/RegistrationBuilder.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/RegistrationData.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/RegistrationExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/RegistrationOrderExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2016 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/SimpleActivatorData.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Builder/SingleRegistrationStyle.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/ContainerBuilder.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Core/ActivatedEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Core/ActivatingEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Core/Activators/Delegate/DelegateActivator.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Core/Activators/InstanceActivator.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright � 2018 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Core/AutoActivateService.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2012 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Core/ComponentRegisteredEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright � 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Core/ConstantParameter.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac/Core/Container.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This software is part of the Autofac IoC container
// Copyright © 2011 Autofac Contributors
// http://autofac.org
// https://autofac.org
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
Expand Down
Loading

0 comments on commit 6dde84e

Please sign in to comment.