-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added solution and build configuration.
- Loading branch information
Showing
12 changed files
with
168 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2013 | ||
VisualStudioVersion = 12.0.31101.0 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Autofac.Extras.MvvmCross", "src\Autofac.Extras.MvvmCross\Autofac.Extras.MvvmCross.csproj", "{1C6A45CE-216B-4F3B-8EBC-CB8782B76E7E}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Autofac.Extras.Tests.MvvmCross", "test\Autofac.Extras.Tests.MvvmCross\Autofac.Extras.Tests.MvvmCross.csproj", "{BFC1B673-4FB5-4240-8495-095802188DFD}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{1C6A45CE-216B-4F3B-8EBC-CB8782B76E7E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{1C6A45CE-216B-4F3B-8EBC-CB8782B76E7E}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{1C6A45CE-216B-4F3B-8EBC-CB8782B76E7E}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{1C6A45CE-216B-4F3B-8EBC-CB8782B76E7E}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{BFC1B673-4FB5-4240-8495-095802188DFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{BFC1B673-4FB5-4240-8495-095802188DFD}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{BFC1B673-4FB5-4240-8495-095802188DFD}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{BFC1B673-4FB5-4240-8495-095802188DFD}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!-- Dictionary format defined here: http://msdn.microsoft.com/en-us/library/bb514188.aspx --> | ||
<Dictionary> | ||
<Words> | ||
<!-- | ||
<Unrecognized> | ||
<Word></Word> | ||
</Unrecognized> | ||
--> | ||
<!-- Capitalize proper nouns and acronyms; "regular words" just lowercase. --> | ||
<Recognized> | ||
<Word>Api</Word> | ||
<Word>Autofac</Word> | ||
<Word>autowired</Word> | ||
<Word>autowiring</Word> | ||
<Word>composable</Word> | ||
<Word>configurator</Word> | ||
<Word>Ioc</Word> | ||
<Word>Mef</Word> | ||
<Word>Moq</Word> | ||
<Word>multitenancy</Word> | ||
<Word>Mvc</Word> | ||
<Word>Mvx</Word> | ||
<Word>Mvvm</Word> | ||
<Word>startable</Word> | ||
<Word>Owin</Word> | ||
</Recognized> | ||
<!-- | ||
<Deprecated> | ||
<Term PreferredAlternate=""></Term> | ||
</Deprecated> | ||
<Compound> | ||
<Term CompoundAlternate=""></Term> | ||
</Compound> | ||
<DiscreteExceptions> | ||
<Term></Term> | ||
</DiscreteExceptions> | ||
--> | ||
</Words> | ||
<!-- | ||
<Acronyms> | ||
<CasingExceptions> | ||
<Acronym></Acronym> | ||
</CasingExceptions> | ||
</Acronyms> | ||
--> | ||
</Dictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RuleSet Name="Autofac - Portable Class Library Rules" Description="This ruleset is for Autofac assemblies that build as Portable Class Libraries." ToolsVersion="12.0"> | ||
<IncludeAll Action="Warning" /> | ||
<Rules AnalyzerId="Microsoft.Analyzers.ManagedCodeAnalysis" RuleNamespace="Microsoft.Rules.Managed"> | ||
<Rule Id="CA1004" Action="None" /> | ||
<Rule Id="CA1005" Action="None" /> | ||
<Rule Id="CA1006" Action="None" /> | ||
<Rule Id="CA1016" Action="None" /> | ||
<Rule Id="CA1020" Action="None" /> | ||
<Rule Id="CA1026" Action="None" /> | ||
<Rule Id="CA1032" Action="None" /> | ||
<Rule Id="CA1716" Action="None" /> | ||
<Rule Id="CA1724" Action="None" /> | ||
<Rule Id="CA2000" Action="None" /> | ||
<Rule Id="CA2243" Action="None" /> | ||
</Rules> | ||
</RuleSet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: 3.3.0.{build} | ||
|
||
assembly_info: | ||
patch: true | ||
file: AssemblyInfo.cs | ||
assembly_version: "3.3.0.0" | ||
assembly_file_version: "{version}" | ||
assembly_informational_version: "3.3.0-CI-{build}" | ||
|
||
configuration: Release | ||
|
||
before_build: nuget restore | ||
|
||
build: | ||
verbosity: minimal | ||
publish_nuget: true | ||
publish_nuget_symbols: true | ||
|
||
deploy: | ||
- provider: NuGet | ||
server: https://www.myget.org/F/autofac/ | ||
api_key: | ||
secure: N4KZCRegcmenMoJ0peZfQwDzqq+Wt4oxGzNTgvkrDxgWyZhw7hNwKmd4n2AsNKQX | ||
symbol_server: https://nuget.symbolsource.org/MyGet/autofac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/Autofac.Extras.MvvmCross/Autofac.Extras.MvvmCross.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<id>Autofac.Extras.MvvmCross</id> | ||
<version>$version$</version> | ||
<authors>Autofac Contributors</authors> | ||
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>This extension provides support for using Autofac as the DI framework in MvvmCross.</description> | ||
<summary>Autofac extension supporting MvvmCross dependency injection.</summary> | ||
<language>en-US</language> | ||
<title>Autofac Extras: MvvmCross IoC Support</title> | ||
<projectUrl>http://autofac.org</projectUrl> | ||
<iconUrl>http://code.google.com/p/autofac/logo</iconUrl> | ||
<dependencies> | ||
<dependency id="Autofac" version="[3.5.0,4.0.0)" /> | ||
<dependency id="MvvmCross.HotTuna.CrossCore" version="[3.2.1,4.0.0)" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
using System; | ||
using System.Reflection; | ||
using System.Resources; | ||
|
||
// MvvmCross integration is not marked with APTCA because the MvvmCross | ||
// framework is all SecurityCritical by default. | ||
using System.Runtime.InteropServices; | ||
|
||
[assembly: AssemblyTitle("Autofac.Extras.MvvmCross")] | ||
[assembly: CLSCompliant(false)] // MvvmCross is not marked CLS compliant. | ||
[assembly: ComVisible(false)] | ||
|
||
// MvvmCross is not marked CLS compliant. | ||
[assembly: CLSCompliant(false)] | ||
[assembly: AssemblyCompany("Autofac Project - http://autofac.org")] | ||
[assembly: AssemblyProduct("Autofac")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
[assembly: NeutralResourcesLanguage("en")] | ||
|
||
[assembly: ComVisible(false)] | ||
[assembly: AssemblyVersion("0.0.0.0")] | ||
[assembly: AssemblyFileVersion("0.0.0.0")] | ||
[assembly: AssemblyInformationalVersion("0.0.0")] | ||
[assembly: AssemblyConfiguration("Release")] | ||
[assembly: AssemblyCopyright("Copyright © 2014 Autofac Contributors")] | ||
[assembly: AssemblyDescription("MvvmCross integration for Autofac IoC")] |
23 changes: 0 additions & 23 deletions
23
src/Autofac.Extras.MvvmCross/Properties/VersionAssemblyInfo.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters