mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2026-04-07 23:44:00 +00:00
Warning fixes
This commit is contained in:
parent
a142c9b0da
commit
c335ba2f20
2 changed files with 15 additions and 3 deletions
|
|
@ -30,7 +30,13 @@ namespace NmeaParser.Tests
|
|||
public class NmeaMessages
|
||||
{
|
||||
[TestMethod]
|
||||
public async Task ParseNmeaFile()
|
||||
public
|
||||
#if NETFX_CORE
|
||||
async Task
|
||||
#else
|
||||
void
|
||||
#endif
|
||||
ParseNmeaFile()
|
||||
{
|
||||
#if NETFX_CORE
|
||||
var file = await Windows.Storage.StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///NmeaSampleData.txt"));
|
||||
|
|
@ -56,7 +62,13 @@ namespace NmeaParser.Tests
|
|||
}
|
||||
}
|
||||
[TestMethod]
|
||||
public async Task ParseTrimbleR2NmeaFile()
|
||||
public
|
||||
#if NETFX_CORE
|
||||
async Task
|
||||
#else
|
||||
void
|
||||
#endif
|
||||
ParseTrimbleR2NmeaFile()
|
||||
{
|
||||
#if NETFX_CORE
|
||||
var file = await Windows.Storage.StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///TrimbleR2SampleData.txt"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue