Skip to content

Commit

Permalink
Fix build issue and update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
dotMorten committed Aug 28, 2020
1 parent b1a82e3 commit 3ec2244
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SampleApp.UWP/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ private async void LoadDevices()
serialDevice.BaudRate = 9600;
serialDevice.DataBits = 8;
serialDevice.Parity = SerialParity.None;
Task.FromResult<NmeaDevice>(new NmeaParser.SerialPortDevice(serialDevice));
return Task.FromResult<NmeaDevice>(new NmeaParser.SerialPortDevice(serialDevice));
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion src/SampleApp.WinDesktop/SampleApp.NetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<Link>NmeaSampleData.txt</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<PackageReference Include="Esri.ArcGISRuntime.WPF" Version="100.7.0" />
<PackageReference Include="Esri.ArcGISRuntime.WPF" Version="100.9.0" />
<Content Include="car.glb">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
Expand Down

0 comments on commit 3ec2244

Please sign in to comment.