File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Sentry.Unity/Integrations Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -505,8 +505,8 @@ void PrintFailedTests(XElement element)
505505 <SDK Include =" iOS" />
506506 <SDK Include =" Android" />
507507 </ItemGroup >
508- <Message Importance =" High" Text =" Replacing $(SentryArtifactsDestination)/ %(SDK.Identity)" />
509- <RemoveDir Directories =" $(SentryArtifactsDestination)/ %(SDK.Identity)" />
510- <Exec Command =" gh run download $(LastSuccessfulRunId) -n " %(SDK.Identity)-sdk" -D " $(SentryArtifactsDestination)/ %(SDK.Identity)" " />
508+ <Message Importance =" High" Text =" Replacing $(SentryArtifactsDestination)%(SDK.Identity)" />
509+ <RemoveDir Directories =" $(SentryArtifactsDestination)%(SDK.Identity)" />
510+ <Exec Command =" gh run download $(LastSuccessfulRunId) -n " %(SDK.Identity)-sdk" -D " $(SentryArtifactsDestination)%(SDK.Identity)" " />
511511 </Target >
512512</Project >
Original file line number Diff line number Diff line change @@ -83,8 +83,8 @@ public static void Init(SentryUnityOptions options)
8383
8484 public static void Close ( ) => sentry_close ( ) ;
8585
86- /// Call after native init() to check if the application has crashed in the previous run and clear the status.
87- /// Because the file is removed, the result will change on subsequent calls so it must be cached for the current runtime.
86+ // Call after native init() to check if the application has crashed in the previous run and clear the status.
87+ // Because the file is removed, the result will change on subsequent calls so it must be cached for the current runtime.
8888 internal static bool HandleCrashedLastRun ( SentryUnityOptions options )
8989 {
9090 var result = sentry_get_crashed_last_run ( ) == 1 ;
Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ internal interface IApplication
1616 RuntimePlatform Platform { get ; }
1717 }
1818
19+ /// <summary>
1920 /// Semi-internal class to be used by other Sentry.Unity assemblies
21+ /// </summary>
2022 public sealed class ApplicationAdapter : IApplication
2123 {
2224 public static readonly ApplicationAdapter Instance = new ( ) ;
You can’t perform that action at this time.
0 commit comments