Skip to content

Commit bbddb4a

Browse files
Update NuGet Packages, Add Dependabot, Add GitHub Actions
1 parent 90a081f commit bbddb4a

File tree

9 files changed

+128
-19
lines changed

9 files changed

+128
-19
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
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 is. Ex. I'm always frustrated when [...]
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 or screenshots about the feature request here.

.github/dependabot.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "nuget"
9+
directory: "/"
10+
schedule:
11+
interval: "daily"

.github/workflows/mobile.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Mobile
2+
3+
on:
4+
push:
5+
branches:
6+
- "main"
7+
pull_request:
8+
branches:
9+
- "*"
10+
11+
jobs:
12+
Build_Android:
13+
runs-on: macos-latest
14+
15+
steps:
16+
- uses: actions/checkout@v1
17+
18+
- name: Restore NuGet
19+
run: |
20+
nuget restore
21+
22+
- name: Build Android App
23+
run: |
24+
mono /Applications/Visual\ studio.app/Contents/Resources/lib/monodevelop/bin/MSBuild/Current/bin/MSBuild.dll ./SimpleXamarinGraphQL.Android/SimpleXamarinGraphQL.Android.csproj /verbosity:normal /p:Configuration=Release
25+

Directory.Build.props

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Project>
3+
<PropertyGroup>
4+
<LangVersion>latest</LangVersion>
5+
<Nullable>enable</Nullable>
6+
<WarningsAsErrors>nullable</WarningsAsErrors>
7+
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
8+
<GenerateErrorForMissingTargetingPacks>false</GenerateErrorForMissingTargetingPacks>
9+
</PropertyGroup>
10+
</Project>

SimpleXamarinGraphQL.Android/SimpleXamarinGraphQL.Android.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@
6060
<Reference Include="System.Numerics.Vectors" />
6161
</ItemGroup>
6262
<ItemGroup>
63-
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2012" />
64-
<PackageReference Include="GraphQL.Client" Version="3.2.2" />
65-
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="5.0.2" />
66-
<PackageReference Include="Polly" Version="7.2.1" />
63+
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2083" />
64+
<PackageReference Include="GraphQL.Client" Version="3.2.4" />
65+
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="6.0.0" />
66+
<PackageReference Include="Polly" Version="7.2.2" />
6767
<PackageReference Include="modernhttpclient-updated" Version="3.4.3" />
68-
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />
69-
<PackageReference Include="GraphQL.Client.Serializer.Newtonsoft" Version="3.2.2" />
68+
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />
69+
<PackageReference Include="GraphQL.Client.Serializer.Newtonsoft" Version="3.2.4" />
7070
</ItemGroup>
7171
<ItemGroup>
7272
<Compile Include="MainActivity.cs" />

SimpleXamarinGraphQL.iOS/SimpleXamarinGraphQL.iOS.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,13 @@
122122
<Reference Include="System.Numerics.Vectors" />
123123
</ItemGroup>
124124
<ItemGroup>
125-
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2012" />
126-
<PackageReference Include="GraphQL.Client" Version="3.2.2" />
127-
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="5.0.2" />
128-
<PackageReference Include="Polly" Version="7.2.1" />
125+
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2083" />
126+
<PackageReference Include="GraphQL.Client" Version="3.2.4" />
127+
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="6.0.0" />
128+
<PackageReference Include="Polly" Version="7.2.2" />
129129
<PackageReference Include="modernhttpclient-updated" Version="3.4.3" />
130-
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />
131-
<PackageReference Include="GraphQL.Client.Serializer.Newtonsoft" Version="3.2.2" />
130+
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />
131+
<PackageReference Include="GraphQL.Client.Serializer.Newtonsoft" Version="3.2.4" />
132132
</ItemGroup>
133133
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
134134
<ItemGroup>

SimpleXamarinGraphQL.sln

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleXamarinGraphQL.iOS",
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleXamarinGraphQL", "SimpleXamarinGraphQL\SimpleXamarinGraphQL.csproj", "{3850CB98-5F7D-4A57-946E-A244B6686397}"
99
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E48CFC35-17D6-4B52-8D85-E8C5167259D0}"
11+
ProjectSection(SolutionItems) = preProject
12+
Directory.Build.props = Directory.Build.props
13+
EndProjectSection
14+
EndProject
1015
Global
1116
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1217
Debug|Any CPU = Debug|Any CPU

SimpleXamarinGraphQL/SimpleXamarinGraphQL.csproj

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
<DebugSymbols>true</DebugSymbols>
1212
</PropertyGroup>
1313
<ItemGroup>
14-
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2012" />
15-
<PackageReference Include="GraphQL.Client" Version="3.2.2" />
16-
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="5.0.2" />
17-
<PackageReference Include="Polly" Version="7.2.1" />
14+
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2083" />
15+
<PackageReference Include="GraphQL.Client" Version="3.2.4" />
16+
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="6.0.0" />
17+
<PackageReference Include="Polly" Version="7.2.2" />
1818
<PackageReference Include="modernhttpclient-updated" Version="3.4.3" />
19-
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />
20-
<PackageReference Include="GraphQL.Client.Serializer.Newtonsoft" Version="3.2.2" />
21-
<PackageReference Include="Xamarin.CommunityToolkit.Markup" Version="1.0.3" />
19+
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />
20+
<PackageReference Include="GraphQL.Client.Serializer.Newtonsoft" Version="3.2.4" />
21+
<PackageReference Include="Xamarin.CommunityToolkit.Markup" Version="1.3.0-pre1" />
2222
</ItemGroup>
2323
<ItemGroup>
2424
<Folder Include="Pages\" />

0 commit comments

Comments
 (0)