Commit d416fd4
Changed files (3)
product
project
project.specifications
product/project/Program.cs
@@ -19,7 +19,7 @@ namespace mars.rover
static void Main(string[] args)
{
- new Program(null).run_with(args.Select(x => (CommandLineArgument) x));
+ new Program(new NASAPresenter(null)).run_with(args.Select(x => (CommandLineArgument) x));
}
}
}
\ No newline at end of file
product/project/project.csproj
@@ -49,10 +49,12 @@
<Compile Include="CommandLineArgument.cs" />
<Compile Include="NASA.cs" />
<Compile Include="ParameterizedCommand.cs" />
+ <Compile Include="Position.cs" />
<Compile Include="Presenter.cs" />
<Compile Include="NASAPresenter.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
+ <Compile Include="Rover.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
product/project.specifications/project.specifications.csproj
@@ -69,6 +69,7 @@
<Compile Include="NASAPresenterSpecs.cs" />
<Compile Include="ProgramSpecs.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
+ <Compile Include="RoverSpecs.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\project\project.csproj">