Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Follow the steps below to run/debug locally. The optional steps take longer, but
dotnet tool restore && dotnet docfx build docs/docfx.json --warningsAsErrors true
```

1. Open [Steeltoe.io.sln](src/Steeltoe.io.sln) in your preferred IDE, or run from the command line:
1. Open [Steeltoe.io.slnx](src/Steeltoe.io.slnx) in your preferred IDE, or run from the command line:

```shell
dotnet run --project .\src\Steeltoe.io
Expand Down
50 changes: 0 additions & 50 deletions src/Steeltoe.io.sln

This file was deleted.

14 changes: 14 additions & 0 deletions src/Steeltoe.io.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Solution>
<Folder Name="/.github/" />
<Folder Name="/.github/workflows/">
<File Path="../.github/workflows/build-and-stage.yml" />
<File Path="../.github/workflows/pr-cleanup.yml" />
<File Path="../.github/workflows/stage-prod-swap.yml" />
</Folder>
<Folder Name="/Solution Items/">
<File Path="../.editorconfig" />
<File Path="../.gitignore" />
<File Path="../README.md" />
</Folder>
<Project Path="Steeltoe.io/Steeltoe.io.csproj" />
</Solution>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=IP/@EntryIndexedValue">IP</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=JS/@EntryIndexedValue">JS</s:String>
<s:Boolean x:Key="/Default/UserDictionary/Words/=HashiCorp/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=Initializr/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=PostgreSQL/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=Steeltoe/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=Valkey/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=VMware/@EntryIndexedValue">True</s:Boolean>
</wpf:ResourceDictionary>
4 changes: 2 additions & 2 deletions src/Steeltoe.io/Components/Href.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
{
[Parameter] public RenderFragment ChildContent { get; set; }
[Parameter] public string Class { get; set; }
[Parameter] public bool AsButton { get; set; } = false;
[Parameter] public bool NewWindow { get; set; } = false;
[Parameter] public bool AsButton { get; set; }
[Parameter] public bool NewWindow { get; set; }

[Parameter(CaptureUnmatchedValues = true)]
public Dictionary<string, object> AdditionalAttributes { get; set; }
Expand Down
8 changes: 4 additions & 4 deletions src/Steeltoe.io/Components/Template.razor
Original file line number Diff line number Diff line change
Expand Up @@ -146,22 +146,22 @@

@code
{
private int _i = 0;
private int _i;
private string _canonicalUrl;

[Parameter] public string Name { get; set; }
[Parameter] public string MetaDescription { get; set; }
[Parameter] public string SocialShareTitle { get; set; }
[Parameter] public string SocialShareDescription { get; set; }
[Parameter] public bool NameIsPlural { get; set; } = false;
[Parameter] public bool NameIsPlural { get; set; }
[Parameter] public bool ShowBottomGetStarted { get; set; } = true;
[Parameter] public bool ShowBottomDocsUrl { get; set; } = true;
[Parameter] public RenderFragment Description { get; set; }
[Parameter] public RenderFragment WhatIs { get; set; }
[Parameter] public RenderFragment WhyUse { get; set; }
[Parameter] public RenderFragment<Feature> FeatureTemplate { get; set; }
[Parameter] public RenderFragment<Feature> AltFeatureTemplate { get; set; } = null;
[Parameter] public IReadOnlyList<Feature> Features { get; set; } = null;
[Parameter] public RenderFragment<Feature> AltFeatureTemplate { get; set; }
[Parameter] public IReadOnlyList<Feature> Features { get; set; }
[Parameter] public string GettingStartedUrl { get; set; }
[Parameter] public string DocsUrl { get; set; }
[Parameter] public RenderFragment OtherArea { get; set; }
Expand Down
Loading