├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature-or-enhancement-request.md │ └── feedback-or-question.md ├── .gitignore ├── CREATING-INITIALIZR_DEPENDENCY.md ├── Dockerfile ├── README.md ├── Steeltoe.Initializr.sln ├── Steeltoe.Initializr.sln.DotSettings ├── SteeltoeVsix ├── NewSteeltoeProject │ ├── DiscoveryDialog.cs │ ├── InitializrControl.xaml │ ├── InitializrControl.xaml.cs │ ├── Key.snk │ ├── NewSteeltoeProject.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── TopLevelMenu.png │ │ └── TopLevelMenuPackage.ico │ ├── TopLevelMenu.cs │ ├── TopLevelMenuPackage.cs │ ├── TopLevelMenuPackage.vsct │ ├── VSPackage.resx │ ├── app.config │ ├── index.html │ ├── packages.config │ ├── source.extension.vsixmanifest │ └── stylesheet.css └── packages │ ├── Microsoft.VSSDK.BuildTools.15.9.3039 │ ├── .signature.p7s │ ├── Microsoft.VSSDK.BuildTools.15.9.3039.nupkg │ ├── build │ │ ├── Microsoft.VSSDK.BuildTools.props │ │ └── Microsoft.VSSDK.BuildTools.targets │ └── tools │ │ └── vssdk │ │ ├── Microsoft.VisualStudio.ExtensionEngine.dll │ │ ├── Microsoft.VisualStudio.Sdk.BuildTasks.15.0.dll │ │ ├── Microsoft.VisualStudio.Sdk.BuildTasks.dll │ │ ├── Microsoft.VisualStudio.Sdk.Common.targets │ │ ├── Microsoft.VisualStudio.Setup.Common.dll │ │ ├── Microsoft.VisualStudio.Threading.dll │ │ ├── Microsoft.VisualStudio.Validation.dll │ │ ├── Microsoft.VsSDK.Cpp.Overrides.targets │ │ ├── Microsoft.VsSDK.Cpp.targets │ │ ├── Microsoft.VsSDK.targets │ │ ├── Newtonsoft.Json.dll │ │ ├── PkgDefMgmt.dll │ │ ├── ProjectItemsSchema.xml │ │ ├── inc │ │ ├── AppIDCmdUsed.vsct │ │ ├── EmulatorCmdUsed.vsct │ │ ├── KnownImageIds.vsct │ │ ├── Menus.vsct │ │ ├── MnuHelpIds.h │ │ ├── RazorCmdId.h │ │ ├── RazorCmdUsed.vsct │ │ ├── RazorGuids.h │ │ ├── SharedCmdDef.vsct │ │ ├── SharedCmdPlace.vsct │ │ ├── ShellCmdDef.vsct │ │ ├── ShellCmdPlace.vsct │ │ ├── VsDbgCmd.h │ │ ├── VsDbgCmdPlace.vsct │ │ ├── VsDbgCmdUsed.vsct │ │ ├── editids.h │ │ ├── sccmnid.h │ │ ├── sharedids.h │ │ ├── stdidcmd.h │ │ ├── venusids.h │ │ ├── venusmenu.vsct │ │ ├── virtkeys.h │ │ ├── vsdebugguids.h │ │ ├── vsshlids.h │ │ └── wbids.h │ │ ├── offreg.dll │ │ └── schemas │ │ ├── PackageLanguagePackManifestSchema.xsd │ │ ├── PackageManifestSchema.Assets.xsd │ │ ├── PackageManifestSchema.Dependencies.xsd │ │ ├── PackageManifestSchema.Installation.xsd │ │ ├── PackageManifestSchema.Installer.xsd │ │ ├── PackageManifestSchema.Metadata.xsd │ │ ├── PackageManifestSchema.Prerequisites.xsd │ │ ├── PackageManifestSchema.xsd │ │ ├── VSIXLanguagePackSchema.xsd │ │ └── VSIXManifestSchema.xsd │ ├── Microsoft.VisualStudio.CoreUtility.15.0.26228 │ ├── .signature.p7s │ ├── Microsoft.VisualStudio.CoreUtility.15.0.26228.nupkg │ └── lib │ │ └── net45 │ │ ├── Microsoft.VisualStudio.CoreUtility.dll │ │ └── microsoft.visualstudio.coreutility.xml │ ├── Microsoft.VisualStudio.Imaging.15.0.26228 │ ├── .signature.p7s │ ├── Microsoft.VisualStudio.Imaging.15.0.26228.nupkg │ └── lib │ │ └── net45 │ │ ├── Microsoft.VisualStudio.Imaging.dll │ │ └── microsoft.visualstudio.imaging.xml │ ├── Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.3.25408 │ ├── Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.3.25408.nupkg │ └── lib │ │ └── net20 │ │ ├── Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.dll │ │ └── Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.xml │ ├── Microsoft.VisualStudio.OLE.Interop.7.10.6071 │ ├── Microsoft.VisualStudio.OLE.Interop.7.10.6071.nupkg │ └── lib │ │ ├── Microsoft.VisualStudio.OLE.Interop.dll │ │ └── Microsoft.VisualStudio.OLE.Interop.xml │ ├── Microsoft.VisualStudio.SDK.Analyzers.15.8.33 │ ├── .signature.p7s │ ├── Microsoft.VisualStudio.SDK.Analyzers.15.8.33.nupkg │ ├── analyzers │ │ └── cs │ │ │ └── Microsoft.VisualStudio.SDK.Analyzers.dll │ ├── build │ │ ├── AdditionalFiles │ │ │ ├── vs-threading.MainThreadAssertingMethods.txt │ │ │ ├── vs-threading.MainThreadSwitchingMethods.txt │ │ │ └── vs-threading.MembersRequiringMainThread.txt │ │ └── Microsoft.VisualStudio.SDK.Analyzers.targets │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.10 │ ├── Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.10.nupkg │ └── build │ │ └── Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets │ ├── Microsoft.VisualStudio.Shell.15.0.15.0.26228 │ ├── .signature.p7s │ ├── Microsoft.VisualStudio.Shell.15.0.15.0.26228.nupkg │ └── lib │ │ └── Microsoft.VisualStudio.Shell.15.0.dll │ ├── Microsoft.VisualStudio.Shell.Framework.15.0.26228 │ ├── .signature.p7s │ ├── Microsoft.VisualStudio.Shell.Framework.15.0.26228.nupkg │ └── lib │ │ └── net45 │ │ └── Microsoft.VisualStudio.Shell.Framework.dll │ ├── Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319 │ ├── Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319.nupkg │ └── lib │ │ ├── Microsoft.VisualStudio.Shell.Interop.10.0.dll │ │ └── Microsoft.VisualStudio.Shell.Interop.10.0.xml │ ├── Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030 │ ├── Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030.nupkg │ └── lib │ │ ├── Microsoft.VisualStudio.Shell.Interop.11.0.dll │ │ └── Microsoft.VisualStudio.Shell.Interop.11.0.xml │ ├── Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110 │ ├── Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110.nupkg │ └── lib │ │ ├── Microsoft.VisualStudio.Shell.Interop.12.0.dll │ │ └── Microsoft.VisualStudio.Shell.Interop.12.0.xml │ ├── Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.14.3.25407 │ ├── Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.14.3.25407.nupkg │ └── lib │ │ ├── Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.dll │ │ └── microsoft.visualstudio.shell.interop.14.0.designtime.xml │ ├── Microsoft.VisualStudio.Shell.Interop.7.10.6071 │ ├── Microsoft.VisualStudio.Shell.Interop.7.10.6071.nupkg │ └── lib │ │ ├── Microsoft.VisualStudio.Shell.Interop.dll │ │ └── Microsoft.VisualStudio.Shell.Interop.xml │ ├── Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727 │ ├── Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727.nupkg │ └── lib │ │ ├── Microsoft.VisualStudio.Shell.Interop.8.0.dll │ │ └── Microsoft.VisualStudio.Shell.Interop.8.0.xml │ ├── Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729 │ ├── Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729.nupkg │ └── lib │ │ ├── Microsoft.VisualStudio.Shell.Interop.9.0.dll │ │ └── Microsoft.VisualStudio.Shell.Interop.9.0.xml │ ├── Microsoft.VisualStudio.TextManager.Interop.7.10.6070 │ ├── Microsoft.VisualStudio.TextManager.Interop.7.10.6070.nupkg │ └── lib │ │ ├── Microsoft.VisualStudio.TextManager.Interop.dll │ │ └── Microsoft.VisualStudio.TextManager.Interop.xml │ ├── Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727 │ ├── Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727.nupkg │ └── lib │ │ ├── Microsoft.VisualStudio.TextManager.Interop.8.0.dll │ │ └── Microsoft.VisualStudio.TextManager.Interop.8.0.xml │ ├── Microsoft.VisualStudio.Threading.15.0.240 │ ├── Microsoft.VisualStudio.Threading.15.0.240.nupkg │ └── lib │ │ ├── dotnet │ │ ├── Microsoft.VisualStudio.Threading.dll │ │ ├── Microsoft.VisualStudio.Threading.xml │ │ ├── cs │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── de │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── es │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── fr │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── it │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ja │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ko │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── pl │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── pt-BR │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ru │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── tr │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── zh-Hans │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ └── zh-Hant │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── net45 │ │ ├── Microsoft.VisualStudio.Threading.dll │ │ ├── Microsoft.VisualStudio.Threading.xml │ │ ├── cs │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── de │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── es │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── fr │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── it │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ja │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ko │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── pl │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── pt-BR │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ru │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── tr │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── zh-Hans │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ └── zh-Hant │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── netstandard1.1 │ │ ├── Microsoft.VisualStudio.Threading.dll │ │ ├── Microsoft.VisualStudio.Threading.xml │ │ ├── cs │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── de │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── es │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── fr │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── it │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ja │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ko │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── pl │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── pt-BR │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ru │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── tr │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── zh-Hans │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ └── zh-Hant │ │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ └── portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10 │ │ ├── Microsoft.VisualStudio.Threading.dll │ │ ├── Microsoft.VisualStudio.Threading.xml │ │ ├── cs │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── de │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── es │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── fr │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── it │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ja │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ko │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── pl │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── pt-BR │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── ru │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── tr │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ ├── zh-Hans │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ │ └── zh-Hant │ │ └── Microsoft.VisualStudio.Threading.resources.dll │ ├── Microsoft.VisualStudio.Threading.Analyzers.15.8.122 │ ├── .signature.p7s │ ├── Microsoft.VisualStudio.Threading.Analyzers.15.8.122.nupkg │ ├── analyzers │ │ └── cs │ │ │ ├── Microsoft.VisualStudio.Threading.Analyzers.dll │ │ │ ├── cs │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ ├── de │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ ├── es │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ ├── fr │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ ├── it │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ ├── ja │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ ├── ko │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ ├── pl │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ ├── pt-BR │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ ├── ru │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ ├── tr │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ ├── zh-Hans │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ │ │ └── zh-Hant │ │ │ └── Microsoft.VisualStudio.Threading.Analyzers.resources.dll │ ├── build │ │ ├── AdditionalFiles │ │ │ ├── vs-threading.MainThreadAssertingMethods.txt │ │ │ ├── vs-threading.MainThreadSwitchingMethods.txt │ │ │ └── vs-threading.MembersRequiringMainThread.txt │ │ └── Microsoft.VisualStudio.Threading.Analyzers.targets │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.VisualStudio.Utilities.15.0.26228 │ ├── .signature.p7s │ ├── Microsoft.VisualStudio.Utilities.15.0.26228.nupkg │ └── lib │ │ └── net46 │ │ ├── Microsoft.VisualStudio.Utilities.dll │ │ └── microsoft.visualstudio.utilities.xml │ ├── Microsoft.VisualStudio.Validation.15.0.82 │ ├── Microsoft.VisualStudio.Validation.15.0.82.nupkg │ ├── README.txt │ ├── lib │ │ ├── dotnet │ │ │ ├── Microsoft.VisualStudio.Validation.dll │ │ │ ├── Microsoft.VisualStudio.Validation.xml │ │ │ ├── cs │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── de │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── es │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── fr │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── it │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ja │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ko │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── pl │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── pt-BR │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ru │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── tr │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── zh-Hans │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ └── zh-Hant │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ ├── net45 │ │ │ ├── Microsoft.VisualStudio.Validation.dll │ │ │ ├── Microsoft.VisualStudio.Validation.xml │ │ │ ├── cs │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── de │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── es │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── fr │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── it │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ja │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ko │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── pl │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── pt-BR │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ru │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── tr │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── zh-Hans │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ └── zh-Hant │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ ├── netstandard1.0 │ │ │ ├── Microsoft.VisualStudio.Validation.dll │ │ │ ├── Microsoft.VisualStudio.Validation.xml │ │ │ ├── cs │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── de │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── es │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── fr │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── it │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ja │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ko │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── pl │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── pt-BR │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ru │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── tr │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── zh-Hans │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ └── zh-Hant │ │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ └── portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10 │ │ │ ├── Microsoft.VisualStudio.Validation.dll │ │ │ ├── Microsoft.VisualStudio.Validation.xml │ │ │ ├── cs │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── de │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── es │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── fr │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── it │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ja │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ko │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── pl │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── pt-BR │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── ru │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── tr │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ ├── zh-Hans │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ │ │ └── zh-Hant │ │ │ └── Microsoft.VisualStudio.Validation.resources.dll │ └── tools │ │ ├── 2013 │ │ ├── RequiresNotNull.snippet │ │ └── RequiresNotNullOrEmpty.snippet │ │ ├── 2015 │ │ ├── RequiresNotNull.snippet │ │ └── RequiresNotNullOrEmpty.snippet │ │ ├── install-snippets.cmd │ │ └── uninstall-snippets.cmd │ ├── Newtonsoft.Json.12.0.2 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.12.0.2.nupkg │ └── lib │ │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── System.Net.Http.4.3.4 │ ├── .signature.p7s │ ├── System.Net.Http.4.3.4.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── Xamarinmac20 │ │ │ └── _._ │ │ ├── monoandroid10 │ │ │ └── _._ │ │ ├── monotouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Net.Http.dll │ │ ├── portable-net45+win8+wpa81 │ │ │ └── _._ │ │ ├── win8 │ │ │ └── _._ │ │ ├── wpa81 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── Xamarinmac20 │ │ │ └── _._ │ │ ├── monoandroid10 │ │ │ └── _._ │ │ ├── monotouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Net.Http.dll │ │ ├── netcore50 │ │ │ └── System.Net.Http.dll │ │ ├── netstandard1.1 │ │ │ └── System.Net.Http.dll │ │ ├── netstandard1.3 │ │ │ └── System.Net.Http.dll │ │ ├── portable-net45+win8+wpa81 │ │ │ └── _._ │ │ ├── win8 │ │ │ └── _._ │ │ ├── wpa81 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netstandard1.6 │ │ │ └── System.Net.Http.dll │ │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Net.Http.dll │ │ ├── netcore50 │ │ └── System.Net.Http.dll │ │ └── netstandard1.3 │ │ └── System.Net.Http.dll │ ├── System.Security.Cryptography.Algorithms.4.3.0 │ ├── .signature.p7s │ ├── System.Security.Cryptography.Algorithms.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net461 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net463 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net461 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net463 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netstandard1.3 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netstandard1.4 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netstandard1.6 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── runtimes │ │ ├── osx │ │ └── lib │ │ │ └── netstandard1.6 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── unix │ │ └── lib │ │ │ └── netstandard1.6 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net461 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net463 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netcore50 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ └── netstandard1.6 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── System.Security.Cryptography.Encoding.4.3.0 │ ├── System.Security.Cryptography.Encoding.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Encoding.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Encoding.dll │ │ ├── netstandard1.3 │ │ │ ├── System.Security.Cryptography.Encoding.dll │ │ │ ├── System.Security.Cryptography.Encoding.xml │ │ │ ├── de │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── es │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── fr │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── it │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── ja │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── ko │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── ru │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── zh-hans │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ └── zh-hant │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netstandard1.3 │ │ │ └── System.Security.Cryptography.Encoding.dll │ │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Security.Cryptography.Encoding.dll │ │ └── netstandard1.3 │ │ └── System.Security.Cryptography.Encoding.dll │ ├── System.Security.Cryptography.Primitives.4.3.0 │ ├── .signature.p7s │ ├── System.Security.Cryptography.Primitives.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── netstandard1.3 │ │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── ref │ │ ├── MonoAndroid10 │ │ └── _._ │ │ ├── MonoTouch10 │ │ └── _._ │ │ ├── net46 │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── netstandard1.3 │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── xamarinios10 │ │ └── _._ │ │ ├── xamarinmac20 │ │ └── _._ │ │ ├── xamarintvos10 │ │ └── _._ │ │ └── xamarinwatchos10 │ │ └── _._ │ └── System.Security.Cryptography.X509Certificates.4.3.0 │ ├── System.Security.Cryptography.X509Certificates.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ │ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── netstandard1.3 │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Cryptography.X509Certificates.xml │ │ ├── de │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── es │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── fr │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── it │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ja │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ko │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ru │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── zh-hans │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ └── zh-hant │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ ├── netstandard1.4 │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Cryptography.X509Certificates.xml │ │ ├── de │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── es │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── fr │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── it │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ja │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ko │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ru │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── zh-hans │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ └── zh-hant │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ │ └── runtimes │ ├── unix │ └── lib │ │ └── netstandard1.6 │ │ └── System.Security.Cryptography.X509Certificates.dll │ └── win │ └── lib │ ├── net46 │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ └── System.Security.Cryptography.X509Certificates.dll │ ├── netcore50 │ └── System.Security.Cryptography.X509Certificates.dll │ └── netstandard1.6 │ └── System.Security.Cryptography.X509Certificates.dll ├── THIRD-PARTY-CONTRIBUTIONS.md ├── azure-pipelines.yml ├── global.json ├── nuget.config ├── packages ├── Microsoft.TemplateEngine.Edge.0.2.3-alpha.nupkg └── microsoft.templateengine.orchestrator.runnableprojects.0.2.1-alpha.nupkg ├── shared.props ├── src ├── Steeltoe.Initializr.TemplateEngine │ ├── .idea │ │ ├── .gitignore │ │ └── .idea.Steeltoe.Initializr.TemplateEngine.dir │ │ │ └── .idea │ │ │ └── .gitignore │ ├── Constants.cs │ ├── Models │ │ ├── GeneratorModel.cs │ │ ├── ProjectDependency.cs │ │ ├── ProjectNameValidationAttribute.cs │ │ └── TemplateViewModel.cs │ ├── Services │ │ ├── ITemplateService.cs │ │ └── Mustache │ │ │ ├── Expressions │ │ │ ├── AnyExpression.cs │ │ │ ├── BooleanExpression.cs │ │ │ ├── CaseExpression.cs │ │ │ ├── IExpression.cs │ │ │ ├── InclusionExpression.cs │ │ │ ├── MoreThanOneExpression.cs │ │ │ └── StringExpression.cs │ │ │ ├── MustacheConfig.cs │ │ │ ├── MustacheConfigSchema.cs │ │ │ ├── MustacheTemplateService.cs │ │ │ ├── MustacheTemplateSettings.cs │ │ │ ├── SourceFile.cs │ │ │ └── TemplateKey.cs │ ├── Steeltoe.Initializr.TemplateEngine.csproj │ └── Utilities │ │ └── Timing.cs ├── Steeltoe.Initializr.WebApp │ ├── ClientApp │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config │ │ │ ├── env.js │ │ │ ├── jest │ │ │ │ ├── cssTransform.js │ │ │ │ └── fileTransform.js │ │ │ ├── modules.js │ │ │ ├── paths.js │ │ │ ├── pnpTs.js │ │ │ ├── webpack.config.js │ │ │ └── webpackDevServer.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── beta.png │ │ │ ├── favicon.png │ │ │ ├── index.html │ │ │ ├── logo-inline.svg │ │ │ └── manifest.json │ │ ├── scripts │ │ │ ├── build.js │ │ │ ├── start.js │ │ │ └── test.js │ │ └── src │ │ │ ├── App.js │ │ │ ├── App.test.js │ │ │ ├── components │ │ │ ├── BottomLinks.js │ │ │ ├── DependenciesSelector.css │ │ │ ├── DependenciesSelector.js │ │ │ ├── DependencyViewSelector.js │ │ │ ├── Home.css │ │ │ ├── Home.js │ │ │ ├── InputSelector.js │ │ │ ├── InputText.js │ │ │ ├── Layout.js │ │ │ ├── NavMenu.css │ │ │ ├── NavMenu.js │ │ │ └── RightInputSelector.js │ │ │ ├── index.js │ │ │ └── registerServiceWorker.js │ ├── Controllers │ │ ├── HomeController.cs │ │ ├── IsNotHtmlRequestAttribute.cs │ │ └── TemplatesController.cs │ ├── InitializrApi.xml │ ├── Program.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ ├── FolderProfile.pubxml │ │ │ └── FolderProfile.pubxml.user │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Steeltoe.Initializr.WebApp.csproj │ ├── Steeltoe.Initializr.WebApp.csproj.user │ ├── Steeltoe.Initializr.WebApp.xml │ ├── StyleCop.Cache │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── manifest-dev.yml │ └── manifest.yml └── templates │ └── Mustache │ ├── 2.4 │ ├── netcoreapp2.1 │ │ └── webapi │ │ │ ├── .gitignore │ │ │ ├── Controllers │ │ │ └── ValuesController.cs │ │ │ ├── Dockerfile │ │ │ ├── Models │ │ │ ├── ConfigServerData.cs │ │ │ ├── ErrorViewModel.cs │ │ │ ├── InitializeContext.cs │ │ │ ├── SampleData.cs │ │ │ └── TestContext.cs │ │ │ ├── MyCircuitBreakerCommand.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── ReplaceMe.csproj │ │ │ ├── Startup.cs │ │ │ ├── app.config │ │ │ ├── appsettings.json │ │ │ └── mustache.json │ └── netcoreapp3.1 │ │ └── webapi │ │ ├── .gitignore │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Dockerfile │ │ ├── Models │ │ ├── ErrorViewModel.cs │ │ ├── InitializeContext.cs │ │ ├── SampleData.cs │ │ └── TestContext.cs │ │ ├── MyCircuitBreakerCommand.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ReplaceMe.csproj │ │ ├── Startup.cs │ │ ├── app.config │ │ ├── appsettings.json │ │ └── mustache.json │ └── 3.0 │ └── netcoreapp3.1 │ └── webapi │ ├── .gitignore │ ├── Controllers │ └── ValuesController.cs │ ├── Dockerfile │ ├── Models │ ├── ErrorViewModel.cs │ ├── InitializeContext.cs │ ├── SampleData.cs │ └── TestContext.cs │ ├── MyCircuitBreakerCommand.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ReplaceMe.csproj │ ├── Startup.cs │ ├── app.config │ ├── appsettings.json │ └── mustache.json ├── stylecop.json └── test ├── Steeltoe.Initializr.TemplateEngine.Test ├── AllImplementationsAndTemplateNames.cs ├── AllImplementationsAndTemplates.cs ├── ConstantsTests.cs ├── IntegrationTests │ └── IntegrationTests.cs ├── MustacheDataViewTests.cs ├── ProcessExtensions.cs ├── Steeltoe.Initializr.TemplateEngine.Test.csproj ├── TemplateServiceTests.cs ├── TestHelper.cs ├── ValidationTests.cs ├── XunitLogger.cs └── XunitLoggerProvider.cs └── Steeltoe.Initializr.WebApp.Test ├── Properties └── launchSettings.json ├── Steeltoe.Initializr.WebApp.Test.csproj ├── Steeltoe.Initializr.WebApp.Test.csproj.user ├── Steeltoe.Initializr.WebApp.Test.xml ├── TemplateControllerTests.cs ├── TestWebAppFactory.cs ├── XunitLogger.cs └── XunitLoggerProvider.cs /.editorconfig: -------------------------------------------------------------------------------- 1 | # ============================================================================= 2 | # https://EditorConfig.org 3 | # ============================================================================= 4 | 5 | root = true 6 | 7 | [*] 8 | indent_style = space 9 | indent_size = 4 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | charset = utf-8 13 | 14 | [*.{csproj,xml,yml}] 15 | indent_size = 2 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Describe the bug 11 | A clear and concise description of the bug. 12 | 13 | ## Steps to reproduce 14 | Steps to reproduce the behavior: 15 | 1. 16 | 2. 17 | 18 | ## Expected behavior 19 | A clear and concise description of what you expected to happen. 20 | 21 | ## Environment (please complete the following information): 22 | - Platform: [e.g. Cloud Foundry, Azure, etc.) 23 | - OS: [e.g. Windows, Linux, Mac OSX] 24 | - .NET Version [e.g. .NET Core 2.1.0, .NET Framework 4.7.1, etc.] 25 | - Steeltoe Version [e.g. 2.3.0] 26 | - Template type: 27 | - Any other library versions to note 28 | 29 | ## Screenshots 30 | If applicable, add screenshots to help explain your problem. 31 | 32 | ## Additional context or links 33 | Add any other context about the problem here. 34 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-or-enhancement-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature or enhancement request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Is your feature request related to a problem? Please describe. 11 | A clear and concise description of what the problem you would like solved. 12 | 13 | ## Describe the solution you'd like 14 | A clear and concise description of what you want to happen. 15 | 16 | ## Describe alternatives you've considered 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | ## Additional context 20 | Add any other context, code snippets, or examples of the feature here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feedback-or-question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feedback or Question 3 | about: Submit your feedback or questions for Steeltoe Initializr 4 | title: "[Feedback]" 5 | labels: feedback, question 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore build artifacts 2 | bin 3 | obj 4 | 5 | # ignore OS X state 6 | .DS_STORE 7 | 8 | # ignore vi/Vim state 9 | *.swp 10 | 11 | # ignore Rider state 12 | Steeltoe.Initializr.sln.DotSettings.user 13 | **/.idea/* 14 | Steeltoe.Initializr.sln.DotSettings.user 15 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM hananiel/dotnetcore2.2.101 2 | WORKDIR /app 3 | COPY packages ./ 4 | COPY shared.props ./ 5 | COPY stylecop.json ./ 6 | COPY nuget.config ./ 7 | COPY src ./ 8 | 9 | WORKDIR ./src 10 | 11 | RUN dotnet restore 12 | RUN dotnet publish -f netcoreapp2.2 -o out 13 | 14 | 15 | #FROM mcr.microsoft.com/dotnet/core/aspnet:2.2-alpine AS runtime 16 | #WORKDIR /app 17 | #COPY --from=build /app/src/InitializrApi/out ./ 18 | #COPY .templateengine /root/.templateengine/ 19 | #RUN dotnet new console -o /root/test.zip 20 | EXPOSE 8080 21 | ENTRYPOINT ["dotnet", "out/Steeltoe.Initializr.dll"] 22 | -------------------------------------------------------------------------------- /Steeltoe.Initializr.sln.DotSettings: -------------------------------------------------------------------------------- 1 |  2 | True 3 | True 4 | True -------------------------------------------------------------------------------- /SteeltoeVsix/NewSteeltoeProject/DiscoveryDialog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Microsoft.VisualStudio.PlatformUI; 7 | 8 | namespace NewSteeltoeProject 9 | { 10 | public class DiscoveryDialog : DialogWindow 11 | { 12 | internal DiscoveryDialog() 13 | { 14 | HasMaximizeButton = HasMinimizeButton = true; 15 | 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SteeltoeVsix/NewSteeltoeProject/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/NewSteeltoeProject/Key.snk -------------------------------------------------------------------------------- /SteeltoeVsix/NewSteeltoeProject/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("NewSteeltoeProject")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("NewSteeltoeProject")] 13 | [assembly: AssemblyCopyright("")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // Version information for an assembly consists of the following four values: 23 | // 24 | // Major Version 25 | // Minor Version 26 | // Build Number 27 | // Revision 28 | // 29 | // You can specify all the values or you can default the Build and Revision Numbers 30 | // by using the '*' as shown below: 31 | // [assembly: AssemblyVersion("1.0.*")] 32 | [assembly: AssemblyVersion("1.0.0.0")] 33 | [assembly: AssemblyFileVersion("1.0.0.0")] 34 | -------------------------------------------------------------------------------- /SteeltoeVsix/NewSteeltoeProject/Resources/TopLevelMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/NewSteeltoeProject/Resources/TopLevelMenu.png -------------------------------------------------------------------------------- /SteeltoeVsix/NewSteeltoeProject/Resources/TopLevelMenuPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/NewSteeltoeProject/Resources/TopLevelMenuPackage.ico -------------------------------------------------------------------------------- /SteeltoeVsix/NewSteeltoeProject/app.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SteeltoeVsix/NewSteeltoeProject/source.extension.vsixmanifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | NewSteeltoeProject 6 | Empty VSIX Project. 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/Microsoft.VSSDK.BuildTools.15.9.3039.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/Microsoft.VSSDK.BuildTools.15.9.3039.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/build/Microsoft.VSSDK.BuildTools.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | $(MSBuildThisFileDirectory)..\ 4 | $(ThisPackageDirectory)\tools 5 | $(VSToolsPath)\VSSDK 6 | $(VsSDKInstall)\inc 7 | $(VsSDKInstall)\bin 8 | 9 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/build/Microsoft.VSSDK.BuildTools.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | System.Environment.SetEnvironmentVariable("VsSDKToolsPath", System.IO.Path.GetFullPath(ProjectDirectory + @"\..\tools\VSSDK\bin"),EnvironmentVariableTarget.Process); 10 | System.Environment.SetEnvironmentVariable("VsSDKSchemaDir", System.IO.Path.GetFullPath(ProjectDirectory + @"\..\tools\VSSDK\schemas"),EnvironmentVariableTarget.Process); 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.ExtensionEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.ExtensionEngine.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.Sdk.BuildTasks.15.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.Sdk.BuildTasks.15.0.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.Sdk.BuildTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.Sdk.BuildTasks.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.Setup.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.Setup.Common.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Microsoft.VisualStudio.Validation.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/PkgDefMgmt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/PkgDefMgmt.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/ProjectItemsSchema.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/inc/editids.h: -------------------------------------------------------------------------------- 1 | // 2 | // editids.h 3 | // NOTE this file is superseded and defines moved to vsshlids.h 4 | // 5 | #ifndef _EDITIDS_H_ 6 | #define _EDITIDS_H_ 7 | 8 | 9 | #include "virtkeys.h" 10 | #include "stdidcmd.h" 11 | #include "vsshlids.h" 12 | #include "sharedids.h" 13 | #endif //_EDITIDS_H_ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/offreg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/offreg.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VSSDK.BuildTools.15.9.3039/tools/vssdk/schemas/PackageManifestSchema.Prerequisites.xsd: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | This schema is used for installing extensions to Visual Studio. 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.CoreUtility.15.0.26228/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.CoreUtility.15.0.26228/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.CoreUtility.15.0.26228/Microsoft.VisualStudio.CoreUtility.15.0.26228.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.CoreUtility.15.0.26228/Microsoft.VisualStudio.CoreUtility.15.0.26228.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.CoreUtility.15.0.26228/lib/net45/Microsoft.VisualStudio.CoreUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.CoreUtility.15.0.26228/lib/net45/Microsoft.VisualStudio.CoreUtility.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Imaging.15.0.26228/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Imaging.15.0.26228/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Imaging.15.0.26228/Microsoft.VisualStudio.Imaging.15.0.26228.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Imaging.15.0.26228/Microsoft.VisualStudio.Imaging.15.0.26228.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Imaging.15.0.26228/lib/net45/Microsoft.VisualStudio.Imaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Imaging.15.0.26228/lib/net45/Microsoft.VisualStudio.Imaging.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.3.25408/Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.3.25408.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.3.25408/Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.3.25408.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.3.25408/lib/net20/Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.3.25408/lib/net20/Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.OLE.Interop.7.10.6071/Microsoft.VisualStudio.OLE.Interop.7.10.6071.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.OLE.Interop.7.10.6071/Microsoft.VisualStudio.OLE.Interop.7.10.6071.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.OLE.Interop.7.10.6071/lib/Microsoft.VisualStudio.OLE.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.OLE.Interop.7.10.6071/lib/Microsoft.VisualStudio.OLE.Interop.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.Analyzers.15.8.33/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.Analyzers.15.8.33/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.Analyzers.15.8.33/Microsoft.VisualStudio.SDK.Analyzers.15.8.33.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.Analyzers.15.8.33/Microsoft.VisualStudio.SDK.Analyzers.15.8.33.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.Analyzers.15.8.33/analyzers/cs/Microsoft.VisualStudio.SDK.Analyzers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.Analyzers.15.8.33/analyzers/cs/Microsoft.VisualStudio.SDK.Analyzers.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.Analyzers.15.8.33/build/AdditionalFiles/vs-threading.MainThreadAssertingMethods.txt: -------------------------------------------------------------------------------- 1 | [Microsoft.VisualStudio.Shell.ThreadHelper]::ThrowIfNotOnUIThread 2 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.Analyzers.15.8.33/build/AdditionalFiles/vs-threading.MainThreadSwitchingMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.Analyzers.15.8.33/build/AdditionalFiles/vs-threading.MainThreadSwitchingMethods.txt -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.Analyzers.15.8.33/build/AdditionalFiles/vs-threading.MembersRequiringMainThread.txt: -------------------------------------------------------------------------------- 1 | [Microsoft.VisualStudio.Shell.ServiceProvider] 2 | [Microsoft.VisualStudio.Shell.Interop.*] 3 | [Microsoft.VisualStudio.OLE.Interop.*] 4 | [Microsoft.Internal.VisualStudio.Shell.Interop.*] 5 | ![Microsoft.VisualStudio.Shell.Interop.IAsyncServiceProvider] 6 | [Microsoft.VisualStudio.Shell.Package]::GetService 7 | [Microsoft.VisualStudio.Shell.ServiceProvider] 8 | [EnvDTE.*] 9 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.Analyzers.15.8.33/build/Microsoft.VisualStudio.SDK.Analyzers.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | false 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.10/Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.10.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.10/Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.10.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.15.0.15.0.26228/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.15.0.15.0.26228/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.15.0.15.0.26228/Microsoft.VisualStudio.Shell.15.0.15.0.26228.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.15.0.15.0.26228/Microsoft.VisualStudio.Shell.15.0.15.0.26228.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.15.0.15.0.26228/lib/Microsoft.VisualStudio.Shell.15.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.15.0.15.0.26228/lib/Microsoft.VisualStudio.Shell.15.0.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Framework.15.0.26228/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Framework.15.0.26228/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Framework.15.0.26228/Microsoft.VisualStudio.Shell.Framework.15.0.26228.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Framework.15.0.26228/Microsoft.VisualStudio.Shell.Framework.15.0.26228.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Framework.15.0.26228/lib/net45/Microsoft.VisualStudio.Shell.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Framework.15.0.26228/lib/net45/Microsoft.VisualStudio.Shell.Framework.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319/Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319/Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319/lib/Microsoft.VisualStudio.Shell.Interop.10.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319/lib/Microsoft.VisualStudio.Shell.Interop.10.0.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030/Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030/Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030/lib/Microsoft.VisualStudio.Shell.Interop.11.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030/lib/Microsoft.VisualStudio.Shell.Interop.11.0.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110/Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110/Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110/lib/Microsoft.VisualStudio.Shell.Interop.12.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30110/lib/Microsoft.VisualStudio.Shell.Interop.12.0.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.14.3.25407/Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.14.3.25407.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.14.3.25407/Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.14.3.25407.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.14.3.25407/lib/Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.14.3.25407/lib/Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.7.10.6071/Microsoft.VisualStudio.Shell.Interop.7.10.6071.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.7.10.6071/Microsoft.VisualStudio.Shell.Interop.7.10.6071.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.7.10.6071/lib/Microsoft.VisualStudio.Shell.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.7.10.6071/lib/Microsoft.VisualStudio.Shell.Interop.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727/Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727/Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727/lib/Microsoft.VisualStudio.Shell.Interop.8.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727/lib/Microsoft.VisualStudio.Shell.Interop.8.0.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729/Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729/Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729/lib/Microsoft.VisualStudio.Shell.Interop.9.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729/lib/Microsoft.VisualStudio.Shell.Interop.9.0.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.TextManager.Interop.7.10.6070/Microsoft.VisualStudio.TextManager.Interop.7.10.6070.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.TextManager.Interop.7.10.6070/Microsoft.VisualStudio.TextManager.Interop.7.10.6070.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.TextManager.Interop.7.10.6070/lib/Microsoft.VisualStudio.TextManager.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.TextManager.Interop.7.10.6070/lib/Microsoft.VisualStudio.TextManager.Interop.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727/Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727/Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727/lib/Microsoft.VisualStudio.TextManager.Interop.8.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727/lib/Microsoft.VisualStudio.TextManager.Interop.8.0.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/Microsoft.VisualStudio.Threading.15.0.240.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/Microsoft.VisualStudio.Threading.15.0.240.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/cs/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/cs/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/de/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/de/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/es/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/es/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/fr/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/fr/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/it/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/it/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/ja/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/ja/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/ko/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/ko/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/pl/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/pl/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/pt-BR/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/pt-BR/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/ru/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/ru/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/tr/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/tr/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/dotnet/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/cs/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/cs/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/de/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/de/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/es/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/es/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/fr/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/fr/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/it/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/it/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/ja/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/ja/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/ko/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/ko/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/pl/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/pl/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/pt-BR/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/pt-BR/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/ru/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/ru/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/tr/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/tr/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/net45/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/cs/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/cs/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/de/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/de/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/es/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/es/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/fr/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/fr/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/it/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/it/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/ja/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/ja/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/ko/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/ko/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/pl/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/pl/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/pt-BR/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/pt-BR/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/ru/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/ru/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/tr/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/tr/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/netstandard1.1/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/cs/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/cs/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/de/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/de/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/es/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/es/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/fr/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/fr/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/it/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/it/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/ja/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/ja/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/ko/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/ko/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/pl/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/pl/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/pt-BR/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/pt-BR/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/ru/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/ru/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/tr/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/tr/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/zh-Hans/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.15.0.240/lib/portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10/zh-Hant/Microsoft.VisualStudio.Threading.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/Microsoft.VisualStudio.Threading.Analyzers.15.8.122.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/Microsoft.VisualStudio.Threading.Analyzers.15.8.122.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/Microsoft.VisualStudio.Threading.Analyzers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/Microsoft.VisualStudio.Threading.Analyzers.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/cs/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/cs/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/de/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/de/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/es/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/es/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/fr/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/fr/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/it/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/it/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/ja/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/ja/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/ko/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/ko/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/pl/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/pl/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/pt-BR/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/pt-BR/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/ru/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/ru/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/tr/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/tr/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/zh-Hans/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/zh-Hans/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/zh-Hant/Microsoft.VisualStudio.Threading.Analyzers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/analyzers/cs/zh-Hant/Microsoft.VisualStudio.Threading.Analyzers.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/build/AdditionalFiles/vs-threading.MainThreadAssertingMethods.txt: -------------------------------------------------------------------------------- 1 | [System.Windows.Threading.Dispatcher]::VerifyAccess 2 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/build/AdditionalFiles/vs-threading.MainThreadSwitchingMethods.txt: -------------------------------------------------------------------------------- 1 | [Microsoft.VisualStudio.Threading.JoinableTaskFactory]::SwitchToMainThreadAsync 2 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/build/AdditionalFiles/vs-threading.MembersRequiringMainThread.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/build/AdditionalFiles/vs-threading.MembersRequiringMainThread.txt -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Threading.Analyzers.15.8.122/build/Microsoft.VisualStudio.Threading.Analyzers.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | false 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Utilities.15.0.26228/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Utilities.15.0.26228/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Utilities.15.0.26228/Microsoft.VisualStudio.Utilities.15.0.26228.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Utilities.15.0.26228/Microsoft.VisualStudio.Utilities.15.0.26228.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Utilities.15.0.26228/lib/net46/Microsoft.VisualStudio.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Utilities.15.0.26228/lib/net46/Microsoft.VisualStudio.Utilities.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/Microsoft.VisualStudio.Validation.15.0.82.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/Microsoft.VisualStudio.Validation.15.0.82.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/README.txt: -------------------------------------------------------------------------------- 1 | Code snippets are available to make adding input validation even easier. 2 | 3 | Run the tools\install-snippets.cmd script from the NuGet package 4 | to add the snippets to your Visual Studio installation. -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/Microsoft.VisualStudio.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/Microsoft.VisualStudio.Validation.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/cs/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/cs/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/de/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/de/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/es/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/es/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/fr/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/fr/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/it/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/it/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/ja/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/ja/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/ko/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/ko/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/pl/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/pl/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/pt-BR/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/pt-BR/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/ru/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/ru/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/tr/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/tr/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/dotnet/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/Microsoft.VisualStudio.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/Microsoft.VisualStudio.Validation.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/cs/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/cs/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/de/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/de/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/es/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/es/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/fr/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/fr/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/it/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/it/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/ja/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/ja/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/ko/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/ko/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/pl/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/pl/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/pt-BR/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/pt-BR/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/ru/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/ru/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/tr/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/tr/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/net45/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/Microsoft.VisualStudio.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/Microsoft.VisualStudio.Validation.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/cs/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/cs/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/de/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/de/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/es/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/es/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/fr/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/fr/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/it/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/it/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/ja/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/ja/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/ko/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/ko/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/pl/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/pl/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/ru/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/ru/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/tr/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/tr/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/Microsoft.VisualStudio.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/Microsoft.VisualStudio.Validation.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/cs/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/cs/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/de/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/de/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/es/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/es/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/fr/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/fr/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/it/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/it/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/ja/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/ja/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/ko/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/ko/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/pl/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/pl/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/pt-BR/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/pt-BR/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/ru/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/ru/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/tr/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/tr/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/lib/portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/tools/2013/RequiresNotNull.snippet: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | Verifies that an argument is not null via a Requires method call. 5 | Microsoft 6 | rnn 7 | Checks an argument for a null value and throws a ArgumentNullException if it is. 8 | 9 | Expansion 10 | 11 |
12 | 13 | 14 | 15 | paramName 16 | paramName 17 | 18 | 19 | 20 | 22 | 23 | 24 | 25 | Microsoft 26 | 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/tools/2013/RequiresNotNullOrEmpty.snippet: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | Verifies that a string argument is not null or empty via a Requires method call. 5 | Microsoft 6 | rnne 7 | Checks an argument for a null value or zero length and throws a ArgumentNullException or ArgumentException if it is. 8 | 9 | Expansion 10 | 11 |
12 | 13 | 14 | 15 | paramName 16 | paramName 17 | 18 | 19 | 20 | 22 | 23 | 24 | 25 | Microsoft 26 | 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/tools/2015/RequiresNotNull.snippet: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | Verifies that an argument is not null via a Requires method call. 5 | Microsoft 6 | rnn 7 | Checks an argument for a null value and throws a ArgumentNullException if it is. 8 | 9 | Expansion 10 | 11 |
12 | 13 | 14 | 15 | paramName 16 | paramName 17 | 18 | 19 | 20 | 22 | 23 | 24 | 25 | Microsoft 26 | 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/tools/2015/RequiresNotNullOrEmpty.snippet: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | Verifies that a string argument is not null or empty via a Requires method call. 5 | Microsoft 6 | rnne 7 | Checks an argument for a null value or zero length and throws a ArgumentNullException or ArgumentException if it is. 8 | 9 | Expansion 10 | 11 |
12 | 13 | 14 | 15 | paramName 16 | paramName 17 | 18 | 19 | 20 | 22 | 23 | 24 | 25 | Microsoft 26 | 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/tools/install-snippets.cmd: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | setlocal ENABLEEXTENSIONS 4 | set KEY_NAME="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" 5 | set VALUE_NAME=Personal 6 | 7 | FOR /F "usebackq skip=2 tokens=1-3" %%A IN (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO ( 8 | set ValueName=%%A 9 | set ValueType=%%B 10 | set ValueValue=%%C 11 | ) 12 | 13 | if defined ValueName ( 14 | SET Docs=%ValueValue% 15 | ) else ( 16 | @echo Could not determine location of "My Documents" folder. 17 | ) 18 | 19 | FOR %%V IN (2010 2012 2013) DO ( 20 | IF EXIST "%DOCS%\Visual Studio %%V" ( 21 | ECHO Installing snippets for Visual Studio %%V... 22 | ROBOCOPY /NJH /NJS /NDL /NFL "%~dp02013" "%DOCS%\Visual Studio %%V\Code Snippets\Visual C#\My Code Snippets" *.snippet 23 | ) 24 | ) 25 | 26 | FOR %%V IN (2015) DO ( 27 | IF EXIST "%DOCS%\Visual Studio %%V" ( 28 | ECHO Installing snippets for Visual Studio %%V... 29 | ROBOCOPY /NJH /NJS /NDL /NFL "%~dp02015" "%DOCS%\Visual Studio %%V\Code Snippets\Visual C#\My Code Snippets" *.snippet 30 | ) 31 | ) 32 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Microsoft.VisualStudio.Validation.15.0.82/tools/uninstall-snippets.cmd: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | setlocal ENABLEEXTENSIONS 4 | set KEY_NAME="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" 5 | set VALUE_NAME=Personal 6 | 7 | FOR /F "usebackq skip=2 tokens=1-3" %%A IN (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO ( 8 | set ValueName=%%A 9 | set ValueType=%%B 10 | set ValueValue=%%C 11 | ) 12 | 13 | if defined ValueName ( 14 | SET Docs=%ValueValue% 15 | ) else ( 16 | @echo Could not determine location of "My Documents" folder. 17 | ) 18 | 19 | FOR %%V IN (2010 2012 2013) DO ( 20 | IF EXIST "%DOCS%\Visual Studio %%V" ( 21 | ECHO Removing snippets from Visual Studio %%V... 22 | FOR /F %%F IN ('DIR /B ^"%~dp02013^"') DO DEL "%DOCS%\Visual Studio %%V\Code Snippets\Visual C#\My Code Snippets\%%F" 23 | ) 24 | ) 25 | 26 | FOR %%V IN (2015) DO ( 27 | IF EXIST "%DOCS%\Visual Studio %%V" ( 28 | ECHO Removing snippets from Visual Studio %%V... 29 | FOR /F %%F IN ('DIR /B ^"%~dp02015^"') DO DEL "%DOCS%\Visual Studio %%V\Code Snippets\Visual C#\My Code Snippets\%%F" 30 | ) 31 | ) 32 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2007 James Newton-King 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/Newtonsoft.Json.12.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/Newtonsoft.Json.12.0.2.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/Newtonsoft.Json.12.0.2/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/System.Net.Http.4.3.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/System.Net.Http.4.3.4.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/Xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/Xamarinmac20/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/monoandroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/monoandroid10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/monotouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/monotouch10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/net45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/net45/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/net46/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/net46/System.Net.Http.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/portable-net45+win8+wpa81/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/win8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/win8/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/wpa81/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/xamarinios10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/xamarintvos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/lib/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/Xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/Xamarinmac20/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/monoandroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/monoandroid10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/monotouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/monotouch10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/net45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/net45/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/net46/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/net46/System.Net.Http.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/netcore50/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/netcore50/System.Net.Http.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/netstandard1.1/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/netstandard1.1/System.Net.Http.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/netstandard1.3/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/netstandard1.3/System.Net.Http.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/portable-net45+win8+wpa81/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/win8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/win8/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/wpa81/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/xamarinios10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/xamarintvos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/ref/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/runtimes/unix/lib/netstandard1.6/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/runtimes/unix/lib/netstandard1.6/System.Net.Http.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/runtimes/win/lib/net46/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/runtimes/win/lib/net46/System.Net.Http.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/runtimes/win/lib/netcore50/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/runtimes/win/lib/netcore50/System.Net.Http.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Net.Http.4.3.4/runtimes/win/lib/netstandard1.3/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Net.Http.4.3.4/runtimes/win/lib/netstandard1.3/System.Net.Http.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/System.Security.Cryptography.Algorithms.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/System.Security.Cryptography.Algorithms.4.3.0.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/MonoAndroid10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/MonoTouch10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/net46/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/net46/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/net461/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/net461/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/net463/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/net463/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarinios10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarinmac20/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarintvos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/lib/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/MonoAndroid10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/MonoTouch10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/net46/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/net46/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/net461/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/net461/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/net463/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/net463/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarinios10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarinmac20/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarintvos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/ref/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Algorithms.4.3.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/System.Security.Cryptography.Encoding.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/System.Security.Cryptography.Encoding.4.3.0.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/MonoAndroid10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/MonoTouch10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/net46/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/net46/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinios10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinmac20/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarintvos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/MonoAndroid10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/MonoTouch10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/net46/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/net46/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinios10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinmac20/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarintvos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/System.Security.Cryptography.Primitives.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/System.Security.Cryptography.Primitives.4.3.0.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/MonoAndroid10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/MonoTouch10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/net46/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/net46/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/netstandard1.3/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/netstandard1.3/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinios10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinmac20/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarintvos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/MonoAndroid10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/MonoTouch10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/net46/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/net46/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinios10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinmac20/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarintvos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/System.Security.Cryptography.X509Certificates.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/System.Security.Cryptography.X509Certificates.4.3.0.nupkg -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/MonoAndroid10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/MonoTouch10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/net46/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/net46/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/net461/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/net461/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarinios10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarinmac20/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarintvos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/lib/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/MonoAndroid10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/MonoTouch10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/net46/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/net46/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/net461/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/net461/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarinios10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarinmac20/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarintvos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/ref/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/SteeltoeVsix/packages/System.Security.Cryptography.X509Certificates.4.3.0/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "3.1.302" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/Microsoft.TemplateEngine.Edge.0.2.3-alpha.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/packages/Microsoft.TemplateEngine.Edge.0.2.3-alpha.nupkg -------------------------------------------------------------------------------- /packages/microsoft.templateengine.orchestrator.runnableprojects.0.2.1-alpha.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/packages/microsoft.templateengine.orchestrator.runnableprojects.0.2.1-alpha.nupkg -------------------------------------------------------------------------------- /shared.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | SA1101;SA1124;SA1201;SA1309;SA1310;SA1401;SA1600;SA1652;1591;CS8002;TS1127 4 | 5 | 6 | 7 | stylecop.json 8 | Always 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.TemplateEngine/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/src/Steeltoe.Initializr.TemplateEngine/.idea/.gitignore -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.TemplateEngine/.idea/.idea.Steeltoe.Initializr.TemplateEngine.dir/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.TemplateEngine/Constants.cs: -------------------------------------------------------------------------------- 1 | namespace Steeltoe.Initializr.TemplateEngine 2 | { 3 | public static class Constants 4 | { 5 | public const string Steeltoe24 = "2.4.4"; 6 | public const string Steeltoe30 = "3.0.0"; 7 | public const string NetCoreApp21 = "netcoreapp2.1"; 8 | public const string NetCoreApp31 = "netcoreapp3.1"; 9 | public const string WebApi = "webapi"; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.TemplateEngine/Models/ProjectDependency.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | namespace Steeltoe.Initializr.TemplateEngine.Models 16 | { 17 | public class ProjectDependency 18 | { 19 | public string Name { get; set; } 20 | 21 | public string ShortName { get; set; } 22 | 23 | public string Description { get; set; } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.TemplateEngine/Models/ProjectNameValidationAttribute.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | using System.ComponentModel.DataAnnotations; 16 | 17 | namespace Steeltoe.Initializr.TemplateEngine.Models 18 | { 19 | public class ProjectNameValidationAttribute : RegularExpressionAttribute 20 | { 21 | public ProjectNameValidationAttribute() 22 | : base(@"^(?:((?!\d)\w+(?:\.(?!\d)\w+)*)\.)?((?!\d)\w+)$") 23 | { 24 | ErrorMessage = "ProjectName must be a valid C# Identifier"; 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.TemplateEngine/Models/TemplateViewModel.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | using Steeltoe.Initializr.TemplateEngine.Services; 16 | 17 | namespace Steeltoe.Initializr.TemplateEngine.Models 18 | { 19 | public class TemplateViewModel 20 | { 21 | public string Id { get; set; } 22 | 23 | public string Name { get; set; } 24 | 25 | public string ShortName { get; set; } 26 | 27 | public string SteeltoeVersion { get; set; } 28 | 29 | public string TargetFramework { get; set; } 30 | 31 | public string Language { get; set; } 32 | 33 | public string Tags { get; set; } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.TemplateEngine/Services/ITemplateService.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | using System.Collections.Generic; 16 | using System.Threading.Tasks; 17 | using Steeltoe.Initializr.TemplateEngine.Models; 18 | 19 | namespace Steeltoe.Initializr.TemplateEngine.Services 20 | { 21 | public interface ITemplateService 22 | { 23 | Task>> GenerateProjectFiles(GeneratorModel model); 24 | 25 | Task GenerateProjectArchiveAsync(GeneratorModel model); 26 | 27 | List GetDependencies(string steeltoe, string framework, string template); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.TemplateEngine/Services/Mustache/Expressions/IExpression.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | using System.Collections.Generic; 16 | using System.Threading.Tasks; 17 | 18 | namespace Steeltoe.Initializr.TemplateEngine.Services.Mustache.Expressions 19 | { 20 | public delegate string EvaluationExpression(Dictionary dataView); 21 | 22 | public interface IExpression 23 | { 24 | EvaluationExpression BuildEvaluationExpression(MustacheConfigSchema schema); 25 | 26 | Task EvaluateExpressionAsync(Dictionary dataView); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.TemplateEngine/Services/Mustache/SourceFile.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | namespace Steeltoe.Initializr.TemplateEngine.Services.Mustache 16 | { 17 | public class SourceFile 18 | { 19 | public string Name { get; set; } 20 | 21 | public string FullPath { get; set; } 22 | 23 | public string Text { get; set; } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | 6 | # testing 7 | /coverage 8 | 9 | # production 10 | /build 11 | 12 | # misc 13 | .DS_Store 14 | .env.local 15 | .env.development.local 16 | .env.test.local 17 | .env.production.local 18 | 19 | npm-debug.log* 20 | yarn-debug.log* 21 | yarn-error.log* 22 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/config/jest/cssTransform.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // This is a custom Jest transformer turning style imports into empty objects. 4 | // http://facebook.github.io/jest/docs/en/webpack.html 5 | 6 | module.exports = { 7 | process() { 8 | return 'module.exports = {};'; 9 | }, 10 | getCacheKey() { 11 | // The output is always the same. 12 | return 'cssTransform'; 13 | }, 14 | }; 15 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/config/pnpTs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const { resolveModuleName } = require('ts-pnp'); 4 | 5 | exports.resolveModuleName = ( 6 | typescript, 7 | moduleName, 8 | containingFile, 9 | compilerOptions, 10 | resolutionHost 11 | ) => { 12 | return resolveModuleName( 13 | moduleName, 14 | containingFile, 15 | compilerOptions, 16 | resolutionHost, 17 | typescript.resolveModuleName 18 | ); 19 | }; 20 | 21 | exports.resolveTypeReferenceDirective = ( 22 | typescript, 23 | moduleName, 24 | containingFile, 25 | compilerOptions, 26 | resolutionHost 27 | ) => { 28 | return resolveModuleName( 29 | moduleName, 30 | containingFile, 31 | compilerOptions, 32 | resolutionHost, 33 | typescript.resolveTypeReferenceDirective 34 | ); 35 | }; 36 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/public/beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/src/Steeltoe.Initializr.WebApp/ClientApp/public/beta.png -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteeltoeOSS/Initializr/1ac72d1e50e7c8e3209f21c962d563ee56f17da9/src/Steeltoe.Initializr.WebApp/ClientApp/public/favicon.png -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "Steeltoe Initializr", 3 | "name": "Steeltoe Initializr", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": "./index.html", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/src/App.js: -------------------------------------------------------------------------------- 1 | import ReactGA from 'react-ga' 2 | import React, { Component } from 'react'; 3 | import { Route } from 'react-router'; 4 | import { Layout } from './components/Layout'; 5 | import { Home } from './components/Home'; 6 | 7 | ReactGA.initialize('UA-114912118-2'); 8 | ReactGA.pageview(window.location.pathname + window.location.search); 9 | export default class App extends Component { 10 | static displayName = App.name; 11 | 12 | render () { 13 | return ( 14 | 15 | 16 | 17 | ); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/src/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import { MemoryRouter } from 'react-router-dom'; 4 | import App from './App'; 5 | 6 | it('renders without crashing', () => { 7 | const div = document.createElement('div'); 8 | ReactDOM.render( 9 | 10 | 11 | , div); 12 | }); 13 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/src/components/BottomLinks.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | 3 | export class BottomLinks extends Component { 4 | 5 | render () { 6 | return ( 7 | 8 |
9 |
© 2019-2020 VMware, Inc. All Rights Reserved
v 0.6.3
10 |
11 | ); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/src/components/InputText.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | 3 | export class InputText extends Component { 4 | 5 | render () { 6 | const {title, ...inputProps} = this.props; 7 | return ( 8 |
9 | 10 | 11 |
12 | ); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/src/components/Layout.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Container } from 'reactstrap'; 3 | import { NavMenu } from './NavMenu'; 4 | 5 | export class Layout extends Component { 6 | static displayName = Layout.name; 7 | 8 | render () { 9 | return ( 10 |
11 | 12 | 13 | {this.props.children} 14 | 15 |
16 | ); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/ClientApp/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import { BrowserRouter } from 'react-router-dom'; 4 | import App from './App'; 5 | import registerServiceWorker from './registerServiceWorker'; 6 | 7 | const baseUrl = document.getElementsByTagName('base')[0].getAttribute('href'); 8 | const rootElement = document.getElementById('root'); 9 | 10 | ReactDOM.render( 11 | 12 | 13 | , 14 | rootElement); 15 | 16 | registerServiceWorker(); 17 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/Controllers/IsNotHtmlRequestAttribute.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | using Microsoft.AspNetCore.Mvc.Abstractions; 16 | using Microsoft.AspNetCore.Mvc.ActionConstraints; 17 | using Microsoft.AspNetCore.Routing; 18 | using System.Linq; 19 | 20 | namespace Steeltoe.Initializr.WebApp.Controllers 21 | { 22 | public class IsNotHtmlRequestAttribute : ActionMethodSelectorAttribute 23 | { 24 | public override bool IsValidForRequest(RouteContext routeContext, ActionDescriptor action) 25 | { 26 | return !routeContext.HttpContext.Request.Headers["Accept"].Any( 27 | h => h.Split(",").Contains("text/html")); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/Program.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | using Microsoft.AspNetCore; 16 | using Microsoft.AspNetCore.Hosting; 17 | 18 | namespace Steeltoe.Initializr.WebApp 19 | { 20 | public static class Program 21 | { 22 | public static void Main(string[] args) 23 | { 24 | CreateWebHostBuilder(args).Build().Run(); 25 | } 26 | 27 | private static IWebHostBuilder CreateWebHostBuilder(string[] args) => 28 | WebHost.CreateDefaultBuilder(args) 29 | .UseStartup(); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | FileSystem 9 | FileSystem 10 | Release 11 | Any CPU 12 | 13 | True 14 | False 15 | netcoreapp2.2 16 | linux-x64 17 | fe01a64f-e44d-4edc-b9a0-b33521d5a254 18 | true 19 | <_IsPortable>false 20 | bin\Release\netcoreapp2.2\publish\ 21 | False 22 | 23 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | <_PublishTargetUrl>C:\Users\Hananiel\projects\InitializrApi\src\bin\Release\netcoreapp2.2\publish\ 10 | 11 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:47802", 8 | "sslPort": 44372 9 | } 10 | }, 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "Steeltoe.Initializr": { 21 | "commandName": "Project", 22 | "launchBrowser": true, 23 | "launchUrl": "https://localhost:5001", 24 | "applicationUrl": "https://localhost:5001;http://localhost:5000", 25 | "environmentVariables": { 26 | "ASPNETCORE_ENVIRONMENT": "Development" 27 | } 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/Steeltoe.Initializr.WebApp.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectDebugger 5 | 6 | 7 | Steeltoe.Initializr 8 | FolderProfile 9 | 10 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/Steeltoe.Initializr.WebApp.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Steeltoe.Initializr.WebApp 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning", 5 | "Microsoft.Hosting.Lifetime": "Information" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "FriendlyNames": { 10 | "SQLServer": "SQL Server", 11 | "PostgresEFCore": "Postgres EFCore", 12 | "CloudFoundry": "Cloud Foundry", 13 | "MySqlEFCore": "MySQL EFCore", 14 | "MySqlEF6": "MySQL EF6", 15 | "OAuthConnector": "OAuth Connector", 16 | "DynamicLogger": "Dynamic Logger", 17 | "CircuitBreaker": "Circuit Breaker" 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/manifest-dev.yml: -------------------------------------------------------------------------------- 1 | --- 2 | applications: 3 | - name: startsteeltoe-stage 4 | buildpacks: 5 | - dotnet_core_buildpack 6 | memory: 1024M 7 | command: cd ${HOME} && ./Steeltoe.Initializr.WebApp 8 | env: 9 | ASPNETCORE_ENVIRONMENT: Production 10 | -------------------------------------------------------------------------------- /src/Steeltoe.Initializr.WebApp/manifest.yml: -------------------------------------------------------------------------------- 1 | --- 2 | applications: 3 | - name: startsteeltoe-prod 4 | buildpacks: 5 | - dotnet_core_buildpack 6 | memory: 1024M 7 | command: cd ${HOME} && ./Steeltoe.Initializr.WebApp 8 | env: 9 | ASPNETCORE_ENVIRONMENT: Production 10 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp2.1/webapi/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/dotnet/core/aspnet:2.1 AS base 2 | WORKDIR /app 3 | EXPOSE 80 4 | 5 | FROM mcr.microsoft.com/dotnet/core/sdk:2.1 AS build 6 | WORKDIR /src 7 | COPY ["{{ProjectNameSpace}}.csproj", "."] 8 | RUN dotnet restore "{{ProjectNameSpace}}.csproj" 9 | COPY . . 10 | RUN dotnet build "{{ProjectNameSpace}}.csproj" -c Release -o /app 11 | 12 | FROM build AS publish 13 | RUN dotnet publish "{{ProjectNameSpace}}.csproj" -c Release -o /app 14 | 15 | FROM base AS final 16 | WORKDIR /app 17 | COPY --from=publish /app . 18 | ENTRYPOINT ["dotnet", "{{ProjectNameSpace}}.dll"] 19 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp2.1/webapi/Models/ConfigServerData.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace {{ProjectNameSpace}} 7 | { 8 | /// 9 | /// An object used with the DI Options mechanism for exposing the data retrieved 10 | /// from the Spring Cloud Config Server 11 | /// 12 | public class ConfigServerData 13 | { 14 | public string Bar { get; set; } 15 | public string Foo { get; set; } 16 | public Info Info { get; set; } 17 | 18 | } 19 | 20 | public class Info 21 | { 22 | public string Description { get; set; } 23 | public string Url { get; set; } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp2.1/webapi/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace {{ProjectNameSpace}} 4 | { 5 | public class ErrorViewModel 6 | { 7 | public string RequestId { get; set; } 8 | 9 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 10 | } 11 | } -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp2.1/webapi/Models/InitializeContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Hosting; 2 | using Microsoft.Extensions.DependencyInjection; 3 | using Microsoft.Extensions.Logging; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Threading.Tasks; 8 | 9 | namespace {{ProjectNameSpace}} 10 | { 11 | public static class InitializeContext 12 | { 13 | public static IWebHost InitializeDbContexts(this IWebHost host) 14 | { 15 | using (var scope = host.Services.CreateScope()) 16 | { 17 | var services = scope.ServiceProvider; 18 | try 19 | { 20 | SampleData.InitializeMyContexts(services); 21 | } 22 | catch (Exception ex) 23 | { 24 | var logger = services.GetRequiredService>(); 25 | logger.LogError(ex, "An error occurred seeding the DB."); 26 | } 27 | } 28 | return host; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp2.1/webapi/Models/TestContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore; 2 | using System.ComponentModel.DataAnnotations; 3 | using System.ComponentModel.DataAnnotations.Schema; 4 | 5 | namespace {{ProjectNameSpace}} 6 | { 7 | public class TestContext : DbContext 8 | { 9 | public TestContext(DbContextOptions options) : base(options) 10 | { 11 | 12 | } 13 | 14 | public DbSet TestData { get; set; } 15 | } 16 | 17 | public class TestData 18 | { 19 | [Key] 20 | [DatabaseGenerated(DatabaseGeneratedOption.None)] 21 | public int Id { get; set; } 22 | 23 | public string Data { get; set; } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp2.1/webapi/MyCircuitBreakerCommand.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Steeltoe.CircuitBreaker.Hystrix; 6 | namespace {{ProjectNameSpace}} 7 | { 8 | public class MyCircuitBreakerCommand : HystrixCommand 9 | { 10 | private string _name; 11 | public MyCircuitBreakerCommand(string name): base(HystrixCommandGroupKeyDefault.AsKey("MyCircuitBreakerGroup")) 12 | { 13 | _name = name; 14 | IsFallbackUserDefined = true; 15 | } 16 | protected override async Task RunAsync() 17 | { 18 | return await Task.FromResult("Hello " + _name); 19 | } 20 | protected override async Task RunFallbackAsync() 21 | { 22 | return await Task.FromResult("Hello " + _name + " via fallback"); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp2.1/webapi/app.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp2.1/webapi/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | {{#PlaceholderConfig}} 3 | "ResolvedPlaceholderFromEnvVariables": "${PATH?NotFound}", 4 | "UnresolvedPlaceholder": "${SomKeyNotFound?NotFound}", 5 | "ResolvedPlaceholderFromJson": "${Logging:LogLevel:System?${Loggin:LogLevel:Default}}", 6 | {{/PlaceholderConfig}} 7 | "Logging": { 8 | "LogLevel": { 9 | "Default": "Debug", 10 | "System": "Information", 11 | "Microsoft": "Information" 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp3.1/webapi/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS base 2 | WORKDIR /app 3 | EXPOSE 80 4 | 5 | FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build 6 | WORKDIR /src 7 | COPY ["{{ProjectNameSpace}}.csproj", "."] 8 | RUN dotnet restore "{{ProjectNameSpace}}.csproj" 9 | COPY . . 10 | RUN dotnet build "{{ProjectNameSpace}}.csproj" -c Release -o /app 11 | 12 | FROM build AS publish 13 | RUN dotnet publish "{{ProjectNameSpace}}.csproj" -c Release -o /app 14 | 15 | FROM base AS final 16 | WORKDIR /app 17 | COPY --from=publish /app . 18 | ENTRYPOINT ["dotnet", "{{ProjectNameSpace}}.dll"] 19 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp3.1/webapi/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace {{ProjectNameSpace}} 4 | { 5 | public class ErrorViewModel 6 | { 7 | public string RequestId { get; set; } 8 | 9 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 10 | } 11 | } -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp3.1/webapi/Models/InitializeContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Hosting; 2 | using Microsoft.Extensions.DependencyInjection; 3 | using Microsoft.Extensions.Logging; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Threading.Tasks; 8 | 9 | namespace {{ProjectNameSpace}} 10 | { 11 | public static class InitializeContext 12 | { 13 | public static IWebHost InitializeDbContexts(this IWebHost host) 14 | { 15 | using (var scope = host.Services.CreateScope()) 16 | { 17 | var services = scope.ServiceProvider; 18 | try 19 | { 20 | SampleData.InitializeMyContexts(services); 21 | } 22 | catch (Exception ex) 23 | { 24 | var logger = services.GetRequiredService>(); 25 | logger.LogError(ex, "An error occurred seeding the DB."); 26 | } 27 | } 28 | return host; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp3.1/webapi/Models/TestContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore; 2 | using System.ComponentModel.DataAnnotations; 3 | using System.ComponentModel.DataAnnotations.Schema; 4 | 5 | namespace {{ProjectNameSpace}} 6 | { 7 | public class TestContext : DbContext 8 | { 9 | public TestContext(DbContextOptions options) : base(options) 10 | { 11 | 12 | } 13 | 14 | public DbSet TestData { get; set; } 15 | } 16 | 17 | public class TestData 18 | { 19 | [Key] 20 | [DatabaseGenerated(DatabaseGeneratedOption.None)] 21 | public int Id { get; set; } 22 | 23 | public string Data { get; set; } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp3.1/webapi/MyCircuitBreakerCommand.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Steeltoe.CircuitBreaker.Hystrix; 6 | 7 | namespace {{ProjectNameSpace}} 8 | { 9 | public class MyCircuitBreakerCommand : HystrixCommand 10 | { 11 | private string _name; 12 | public MyCircuitBreakerCommand(string name): base(HystrixCommandGroupKeyDefault.AsKey("MyCircuitBreakerGroup")) 13 | { 14 | _name = name; 15 | IsFallbackUserDefined = true; 16 | } 17 | protected override async Task RunAsync() 18 | { 19 | return await Task.FromResult("Hello " + _name); 20 | } 21 | protected override async Task RunFallbackAsync() 22 | { 23 | return await Task.FromResult("Hello " + _name + " via fallback"); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp3.1/webapi/app.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/templates/Mustache/2.4/netcoreapp3.1/webapi/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | {{#PlaceholderConfig}} 3 | "ResolvedPlaceholderFromEnvVariables": "${PATH?NotFound}", 4 | "UnresolvedPlaceholder": "${SomKeyNotFound?NotFound}", 5 | "ResolvedPlaceholderFromJson": "${Logging:LogLevel:System?${Loggin:LogLevel:Default}}", 6 | {{/PlaceholderConfig}} 7 | "Logging": { 8 | "LogLevel": { 9 | "Default": "Debug", 10 | "System": "Information", 11 | "Microsoft": "Information" 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /src/templates/Mustache/3.0/netcoreapp3.1/webapi/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS base 2 | WORKDIR /app 3 | EXPOSE 80 4 | 5 | FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build 6 | WORKDIR /src 7 | COPY ["{{ProjectNameSpace}}.csproj", "."] 8 | RUN dotnet restore "{{ProjectNameSpace}}.csproj" 9 | COPY . . 10 | RUN dotnet build "{{ProjectNameSpace}}.csproj" -c Release -o /app 11 | 12 | FROM build AS publish 13 | RUN dotnet publish "{{ProjectNameSpace}}.csproj" -c Release -o /app 14 | 15 | FROM base AS final 16 | WORKDIR /app 17 | COPY --from=publish /app . 18 | ENTRYPOINT ["dotnet", "{{ProjectNameSpace}}.dll"] 19 | -------------------------------------------------------------------------------- /src/templates/Mustache/3.0/netcoreapp3.1/webapi/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace {{ProjectNameSpace}} 4 | { 5 | public class ErrorViewModel 6 | { 7 | public string RequestId { get; set; } 8 | 9 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 10 | } 11 | } -------------------------------------------------------------------------------- /src/templates/Mustache/3.0/netcoreapp3.1/webapi/Models/InitializeContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Hosting; 2 | using Microsoft.Extensions.DependencyInjection; 3 | using Microsoft.Extensions.Logging; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Threading.Tasks; 8 | 9 | namespace {{ProjectNameSpace}} 10 | { 11 | public static class InitializeContext 12 | { 13 | public static IWebHost InitializeDbContexts(this IWebHost host) 14 | { 15 | using (var scope = host.Services.CreateScope()) 16 | { 17 | var services = scope.ServiceProvider; 18 | try 19 | { 20 | SampleData.InitializeMyContexts(services); 21 | } 22 | catch (Exception ex) 23 | { 24 | var logger = services.GetRequiredService>(); 25 | logger.LogError(ex, "An error occurred seeding the DB."); 26 | } 27 | } 28 | return host; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/templates/Mustache/3.0/netcoreapp3.1/webapi/Models/TestContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore; 2 | using System.ComponentModel.DataAnnotations; 3 | using System.ComponentModel.DataAnnotations.Schema; 4 | 5 | namespace {{ProjectNameSpace}} 6 | { 7 | public class TestContext : DbContext 8 | { 9 | public TestContext(DbContextOptions options) : base(options) 10 | { 11 | 12 | } 13 | 14 | public DbSet TestData { get; set; } 15 | } 16 | 17 | public class TestData 18 | { 19 | [Key] 20 | [DatabaseGenerated(DatabaseGeneratedOption.None)] 21 | public int Id { get; set; } 22 | 23 | public string Data { get; set; } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/templates/Mustache/3.0/netcoreapp3.1/webapi/MyCircuitBreakerCommand.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Steeltoe.CircuitBreaker.Hystrix; 6 | 7 | namespace {{ProjectNameSpace}} 8 | { 9 | public class MyCircuitBreakerCommand : HystrixCommand 10 | { 11 | private string _name; 12 | public MyCircuitBreakerCommand(string name): base(HystrixCommandGroupKeyDefault.AsKey("MyCircuitBreakerGroup")) 13 | { 14 | _name = name; 15 | IsFallbackUserDefined = true; 16 | } 17 | protected override async Task RunAsync() 18 | { 19 | return await Task.FromResult("Hello " + _name); 20 | } 21 | protected override async Task RunFallbackAsync() 22 | { 23 | return await Task.FromResult("Hello " + _name + " via fallback"); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/templates/Mustache/3.0/netcoreapp3.1/webapi/app.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/templates/Mustache/3.0/netcoreapp3.1/webapi/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | {{#PlaceholderConfig}} 3 | "ResolvedPlaceholderFromEnvVariables": "${PATH?NotFound}", 4 | "UnresolvedPlaceholder": "${SomKeyNotFound?NotFound}", 5 | "ResolvedPlaceholderFromJson": "${Logging:LogLevel:System?${Loggin:LogLevel:Default}}", 6 | {{/PlaceholderConfig}} 7 | "Logging": { 8 | "LogLevel": { 9 | "Default": "Debug", 10 | "System": "Information", 11 | "Microsoft": "Information" 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json", 3 | "settings": { 4 | "documentationRules": { 5 | "copyrightText": "Copyright {copyrightYear} the original author or authors.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.", 6 | "xmlHeader": false, 7 | "variables": { 8 | "copyrightYear": "2017" 9 | }, 10 | "documentExposedElements": false, 11 | "documentInternalElements": false, 12 | "documentPrivateElements": false 13 | }, 14 | "indentation": { 15 | "useTabs": false, 16 | "indentationSize": 4 17 | }, 18 | "namingRules": { 19 | }, 20 | "orderingRules": { 21 | "usingDirectivesPlacement": "outsideNamespace", 22 | "systemUsingDirectivesFirst": false 23 | }, 24 | "readabilityRules": { 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /test/Steeltoe.Initializr.TemplateEngine.Test/ConstantsTests.cs: -------------------------------------------------------------------------------- 1 | using Xunit; 2 | 3 | namespace Steeltoe.Initializr.TemplateEngine.Test 4 | { 5 | public class ConstantsTests 6 | { 7 | [Fact] 8 | public void Steeltoe24() 9 | { 10 | Assert.Equal("2.4.4", Constants.Steeltoe24); 11 | } 12 | 13 | [Fact] 14 | public void Steeltoe30() 15 | { 16 | Assert.Equal("3.0.0", Constants.Steeltoe30); 17 | } 18 | 19 | [Fact] 20 | public void NetCoreApp21() 21 | { 22 | Assert.Equal("netcoreapp2.1", Constants.NetCoreApp21); 23 | } 24 | 25 | [Fact] 26 | public void NetCoreApp31() 27 | { 28 | Assert.Equal("netcoreapp3.1", Constants.NetCoreApp31); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /test/Steeltoe.Initializr.TemplateEngine.Test/Steeltoe.Initializr.TemplateEngine.Test.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.2 5 | 6 | false 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /test/Steeltoe.Initializr.TemplateEngine.Test/TestHelper.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | using System.Collections.Generic; 16 | using Microsoft.Extensions.Configuration; 17 | 18 | namespace Steeltoe.Initializr.TemplateEngine.Test 19 | { 20 | public class TestHelper 21 | { 22 | public static IConfigurationRoot GetConfiguration() 23 | { 24 | var settings = new Dictionary() 25 | { 26 | ["FriendlyNames:CloudFoundry"] = "Cloud Foundry", 27 | }; 28 | 29 | return new ConfigurationBuilder() 30 | .AddInMemoryCollection(settings) 31 | .Build(); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /test/Steeltoe.Initializr.TemplateEngine.Test/XunitLoggerProvider.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | using Microsoft.Extensions.Logging; 16 | using Xunit.Abstractions; 17 | 18 | namespace Steeltoe.Initializr.TemplateEngine.Test 19 | { 20 | public class XunitLoggerProvider : ILoggerProvider 21 | { 22 | private readonly ITestOutputHelper _testOutputHelper; 23 | 24 | public XunitLoggerProvider(ITestOutputHelper testOutputHelper) 25 | { 26 | _testOutputHelper = testOutputHelper; 27 | } 28 | 29 | public ILogger CreateLogger(string categoryName) 30 | => new XunitLogger(_testOutputHelper, categoryName); 31 | 32 | public void Dispose() 33 | { 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /test/Steeltoe.Initializr.WebApp.Test/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:62166/", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "Steeltoe.Initializr.WebApp.Tests": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "environmentVariables": { 22 | "ASPNETCORE_ENVIRONMENT": "Development" 23 | }, 24 | "applicationUrl": "http://localhost:62167/" 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /test/Steeltoe.Initializr.WebApp.Test/Steeltoe.Initializr.WebApp.Test.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /test/Steeltoe.Initializr.WebApp.Test/Steeltoe.Initializr.WebApp.Test.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Steeltoe.Initializr.WebApp.Test 5 | 6 | 7 | 8 | 9 | Controller Tests for multiple templateService implementations. 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/Steeltoe.Initializr.WebApp.Test/TestWebAppFactory.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | using Microsoft.AspNetCore.Hosting; 16 | using Microsoft.AspNetCore.Mvc.Testing; 17 | 18 | namespace Steeltoe.Initializr.WebApp.Test 19 | { 20 | public class TestWebAppFactory 21 | : WebApplicationFactory 22 | where TStartup : class 23 | { 24 | protected override void ConfigureWebHost(IWebHostBuilder builder) 25 | { 26 | builder.ConfigureServices(services => 27 | { 28 | }); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /test/Steeltoe.Initializr.WebApp.Test/XunitLoggerProvider.cs: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the original author or authors. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // https://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | using Microsoft.Extensions.Logging; 16 | using Xunit.Abstractions; 17 | 18 | namespace Steeltoe.Initializr.WebApp.Test 19 | { 20 | public class XunitLoggerProvider : ILoggerProvider 21 | { 22 | private readonly ITestOutputHelper _testOutputHelper; 23 | 24 | public XunitLoggerProvider(ITestOutputHelper testOutputHelper) 25 | { 26 | _testOutputHelper = testOutputHelper; 27 | } 28 | 29 | public ILogger CreateLogger(string categoryName) 30 | => new WebApp.Test.XunitLogger(_testOutputHelper, categoryName); 31 | 32 | public void Dispose() 33 | { 34 | } 35 | } 36 | } 37 | --------------------------------------------------------------------------------