Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert Secrets to AppSettings #262

Merged
merged 17 commits into from
Jul 5, 2021
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
17 changes: 17 additions & 0 deletions Mobile.BuildTools.sln
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mobile.BuildTools.Reference
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mobile.BuildTools.XamarinSdk", "src\Mobile.BuildTools.XamarinSdk\Mobile.BuildTools.XamarinSdk.csproj", "{2367403E-8614-4F4A-8627-7FC41995F96D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{D096610B-57C6-476F-99CE-FA949E35F2BE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mobile.BuildTools.SchemaGenerator", "tools\Mobile.BuildTools.SchemaGenerator\Mobile.BuildTools.SchemaGenerator.csproj", "{91F7409A-B8C5-488B-8E45-2CD368F193C3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -110,6 +114,18 @@ Global
{2367403E-8614-4F4A-8627-7FC41995F96D}.Release|x64.Build.0 = Release|Any CPU
{2367403E-8614-4F4A-8627-7FC41995F96D}.Release|x86.ActiveCfg = Release|Any CPU
{2367403E-8614-4F4A-8627-7FC41995F96D}.Release|x86.Build.0 = Release|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Debug|x64.ActiveCfg = Debug|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Debug|x64.Build.0 = Debug|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Debug|x86.ActiveCfg = Debug|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Debug|x86.Build.0 = Debug|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Release|Any CPU.Build.0 = Release|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Release|x64.ActiveCfg = Release|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Release|x64.Build.0 = Release|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Release|x86.ActiveCfg = Release|Any CPU
{91F7409A-B8C5-488B-8E45-2CD368F193C3}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -121,6 +137,7 @@ Global
{82EF42A8-49A3-4086-A045-5E2C2F094C04} = {2510D213-21AF-4B25-888D-E63163356A4F}
{20FB88AB-5FE0-41DC-97B7-4C8772A0D059} = {C7456F1C-2B86-4C40-A228-72209A7355A0}
{2367403E-8614-4F4A-8627-7FC41995F96D} = {C7456F1C-2B86-4C40-A228-72209A7355A0}
{91F7409A-B8C5-488B-8E45-2CD368F193C3} = {D096610B-57C6-476F-99CE-FA949E35F2BE}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {429C8CA0-DB8C-4CF5-9627-187B9CC47A99}
Expand Down
3 changes: 3 additions & 0 deletions Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<PackageReference Update="Microsoft.Build" Version="16.0.461" />
<PackageReference Update="Microsoft.Build.Tasks.Core" Version="16.0.461" />
<PackageReference Update="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Update="Newtonsoft.Json.Schema" Version="3.0.14" />
<PackageReference Update="NuGet.Build.Packaging" Version="0.2.5-dev.10" />
<PackageReference Update="NuGetizer" Version="0.7.1" />
<PackageReference Update="Microsoft.Web.Xdt" Version="3.1.0" />
Expand All @@ -17,12 +18,14 @@
<PackageReference Update="Svg.Custom" Version="0.5.5.5" />
<PackageReference Update="Svg.Model" Version="0.5.5.5" />
<PackageReference Update="System.Buffers" Version="4.5.1" />
<PackageReference Update="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Update="System.Drawing.Common" Version="5.0.2" />
<PackageReference Update="System.IO.UnmanagedMemoryStream" Version="4.3.0" />
<PackageReference Update="System.Memory" Version="4.5.4" />
<PackageReference Update="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Update="System.ObjectModel" Version="4.3.0" />
<PackageReference Update="System.Runtime.CompilerServices.Unsafe" Version="5.0.0" />
<PackageReference Update="McMaster.Extensions.CommandLineUtils" Version="3.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions Update-Schemas.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dotnet run --project .\tools\Mobile.BuildTools.SchemaGenerator\Mobile.BuildTools.SchemaGenerator.csproj -- --output-directory .\docs\schemas\v2
Loading