Skip to content
This repository has been archived by the owner on Jan 24, 2025. It is now read-only.

Commit

Permalink
NuGet updates
Browse files Browse the repository at this point in the history
  • Loading branch information
HobDev committed Sep 16, 2023
1 parent 97abe20 commit d49be26
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 7 deletions.
40 changes: 39 additions & 1 deletion InplaceSearching/FodyWeavers.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,45 @@
<xs:complexType>
<xs:attribute name="DisableAnalytics" type="xs:boolean">
<xs:annotation>
<xs:documentation>Disables anonymized usage information from being sent on build. Read more about what data is being collected and why here: https://github.com/realm/realm-dotnet/blob/main/Realm/Realm.Weaver/Analytics.cs</xs:documentation>
<xs:documentation>THIS IS DEPRECATED - USE `AnalyticsCollection` INSTEAD. Disables anonymized
usage information from being sent on build. Read more about what data is being collected and
why here: https://github.com/realm/realm-dotnet/blob/main/Realm/Realm.Weaver/Analytics.cs</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AnalyticsCollection">
<xs:annotation>
<xs:documentation>Controls what anonymized usage information is being sent on build. Read more
about what data is being collected and why here:
https://github.com/realm/realm-dotnet/blob/main/Realm/Realm.Weaver/Analytics/Analytics.cs</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Full">
<xs:annotation>
<xs:documentation>Analytics collection will run normally. This is the default behavior
and we hope you don't change it as the anonymized data collected is critical for
making the right decisions about the future of the Realm SDK.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DryRun">
<xs:annotation>
<xs:documentation>Analytics collection will run but will not send it to the server. This
is useful in combination with `AnalyticsLogPath` if you want to review the data being
sent.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Disabled">
<xs:annotation>
<xs:documentation>Analytics collection is disabled. No data will be sent on build.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="AnalyticsLogPath" type="xs:string">
<xs:annotation>
<xs:documentation>Controls where the payload for the anonymized metrics collection will be
stored. This can be useful if you want to review the data being collected by Realm. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
Expand Down
10 changes: 5 additions & 5 deletions InplaceSearching/InplaceSearching.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommunityToolkit.Maui" Version="3.1.0" />
<PackageReference Include="CommunityToolkit.Maui.Markup" Version="2.1.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.0.0" />
<PackageReference Include="CommunityToolkit.Maui" Version="5.3.0" />
<PackageReference Include="CommunityToolkit.Maui.Markup" Version="3.2.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" />
<PackageReference Include="ReactiveUI" Version="18.4.1" />
<PackageReference Include="Realm" Version="10.18.0" />
<PackageReference Include="ReactiveUI" Version="19.4.1" />
<PackageReference Include="Realm" Version="11.4.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion InplaceSearching/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public MainViewModel()
{
realm = Realm.GetInstance();
IQueryable<Person> allNames = realm.All<Person>();
allNames.SubscribeForNotifications((sender, changes, error) =>
allNames.SubscribeForNotifications((sender, changes) =>
{
_Names.AddOrUpdate(allNames);
});
Expand Down

0 comments on commit d49be26

Please sign in to comment.