Skip to content

Commit

Permalink
fixes issue with updating timelines issue 22 by moving raw object arr…
Browse files Browse the repository at this point in the history
…ay to strings
  • Loading branch information
sei-dupdyke committed Jun 18, 2020
1 parent f956d25 commit fb0b74c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/Ghosts.Api/ghosts.api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<AssemblyName>ghosts.api</AssemblyName>
<ReleaseVersion>3.0.0.0</ReleaseVersion>
<Version>3.0.0.0</Version>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<FileVersion>3.0.0.0</FileVersion>
<ReleaseVersion>3.1.1.0</ReleaseVersion>
<Version>3.1.1.0</Version>
<AssemblyVersion>3.1.1.0</AssemblyVersion>
<FileVersion>3.1.1.0</FileVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>

<Authors>Dustin Updyke for Carnegie Mellon University</Authors>
Expand Down
4 changes: 2 additions & 2 deletions src/Ghosts.Domain/Messages/Timeline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public class TimelineEvent
{
public TimelineEvent()
{
CommandArgs = new List<object>();
CommandArgs = new List<string>();
}

/// <summary>
Expand All @@ -105,7 +105,7 @@ public TimelineEvent()
public string TrackableId { get; set; }

public string Command { get; set; }
public List<object> CommandArgs { get; set; }
public List<string> CommandArgs { get; set; }

/// <summary>
/// Milliseconds
Expand Down
4 changes: 2 additions & 2 deletions src/Ghosts.Domain/ghosts.domain.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Ghosts.Domain</RootNamespace>
<AssemblyVersion>3.1.0.0</AssemblyVersion>
<FileVersion>3.1.0.0</FileVersion>
<AssemblyVersion>3.1.1.0</AssemblyVersion>
<FileVersion>3.1.1.0</FileVersion>
<LangVersion>7.3</LangVersion>
</PropertyGroup>

Expand Down

0 comments on commit fb0b74c

Please sign in to comment.