Skip to content

Commit

Permalink
housekeeping: Use a NuGet restore
Browse files Browse the repository at this point in the history
  • Loading branch information
glennawatson committed Oct 13, 2020
1 parent ea7dec3 commit b7d877d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,17 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: '12.x'


- name: Install NuGet
uses: nuget/setup-nuget@v1
with:
nuget-api-key: ${{ secrets.NuGetAPIKey }}
nuget-version: '5.x'

- name: NuGet restore
run: nuget restore
working-directory: src

- name: NBGV
id: nbgv
uses: dotnet/nbgv@master
Expand All @@ -42,7 +52,7 @@ jobs:
uses: microsoft/setup-msbuild@v1

- name: Build
run: msbuild /t:restore,build,pack /maxcpucount /p:NoPackageAnalysis=true /verbosity:minimal /p:Configuration=${{ env.configuration }}
run: msbuild /t:build,pack /maxcpucount /p:NoPackageAnalysis=true /verbosity:minimal /p:Configuration=${{ env.configuration }}
working-directory: src

- name: Install Report Generator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0"
package="com.companyname.testapp1">
package="com.dotnet.splat.android.testing">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" />
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/ApplicationName" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme">
</application>
Expand Down

0 comments on commit b7d877d

Please sign in to comment.