Skip to content

Commit 23de597

Browse files
2 parents 08fc2ae + f25e34d commit 23de597

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
VERSION="${VERSION//v}"
2020
nuget restore
2121
cd sdk/Notifo.SDK/
22-
msbuild Notifo.SDK.csproj /verbosity:normal /t:Rebuild /p:Configuration=Release /p:Version=$VERSION
22+
msbuild Notifo.SDK.Core.csproj /verbosity:normal /t:Rebuild /p:Configuration=Release /p:Version=$VERSION
2323
dotnet nuget push bin/Release/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_API_KEY}} --skip-duplicate
2424
cd ../Notifo.SDK.FirebasePlugin/
2525
msbuild Notifo.SDK.FirebasePlugin.csproj /verbosity:normal /t:Rebuild /p:Configuration=Release /p:Version=$VERSION

sample/SampleNotificationServiceExtension/SampleNotificationServiceExtension.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,20 @@
9191
<Reference Include="System.Xml" />
9292
<Reference Include="System.Core" />
9393
<Reference Include="Xamarin.iOS" />
94+
<Reference Include="Newtonsoft.Json">
95+
<HintPath>..\..\packages\Newtonsoft.Json.12.0.3\lib\netstandard2.0\Newtonsoft.Json.dll</HintPath>
96+
</Reference>
97+
<Reference Include="Notifo.SDK">
98+
<HintPath>..\..\packages\Notifo.SDK.1.0.0-beta7\lib\netstandard2.1\Notifo.SDK.dll</HintPath>
99+
</Reference>
94100
</ItemGroup>
95101
<ItemGroup>
96102
<Folder Include="Resources\" />
97103
</ItemGroup>
98104
<ItemGroup>
99105
<None Include="Info.plist" />
100106
<None Include="Entitlements.plist" />
107+
<None Include="packages.config" />
101108
</ItemGroup>
102109
<ItemGroup>
103110
<Compile Include="NotificationService.cs" />
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="xamarinios10" />
4+
<package id="Notifo.SDK" version="1.0.0-beta7" targetFramework="xamarinios10" />
5+
<package id="System.ComponentModel.Annotations" version="5.0.0" targetFramework="xamarinios10" />
6+
</packages>

0 commit comments

Comments
 (0)