First Commit Assignment 2
This commit is contained in:
1
.idea/.idea.Tello Drone/.idea/.name
generated
Normal file
1
.idea/.idea.Tello Drone/.idea/.name
generated
Normal file
@@ -0,0 +1 @@
|
|||||||
|
Tello Drone
|
||||||
28
.idea/.idea.Tello Drone/.idea/contentModel.xml
generated
28
.idea/.idea.Tello Drone/.idea/contentModel.xml
generated
@@ -11,9 +11,21 @@
|
|||||||
<e p="$USER_HOME$/.nuget/packages/nunit3testadapter/3.11.0/build/netcoreapp1.0/NUnit3.TestAdapter.dll" t="Include" />
|
<e p="$USER_HOME$/.nuget/packages/nunit3testadapter/3.11.0/build/netcoreapp1.0/NUnit3.TestAdapter.dll" t="Include" />
|
||||||
<e p="$USER_HOME$/.nuget/packages/nunit3testadapter/3.11.0/build/netcoreapp1.0/NUnit3.TestAdapter.pdb" t="Include" />
|
<e p="$USER_HOME$/.nuget/packages/nunit3testadapter/3.11.0/build/netcoreapp1.0/NUnit3.TestAdapter.pdb" t="Include" />
|
||||||
<e p="$USER_HOME$/Library/Caches/Rider2019.2/extResources" t="IncludeRecursive" />
|
<e p="$USER_HOME$/Library/Caches/Rider2019.2/extResources" t="IncludeRecursive" />
|
||||||
<e p="$USER_HOME$/Library/Caches/Rider2019.2/resharper-host/local/Transient/ReSharperHost/v192/SolutionCaches/_Tello Drone.1285879164.00" t="ExcludeRecursive" />
|
<e p="$USER_HOME$/Library/Caches/Rider2019.2/resharper-host/local/Transient/ReSharperHost/v192/SolutionCaches/_Tello Drone.-558926234.00" t="ExcludeRecursive" />
|
||||||
<e p="$PROJECT_DIR$" t="IncludeFlat">
|
<e p="$PROJECT_DIR$" t="IncludeFlat">
|
||||||
<e p="packages" t="ExcludeRecursive" />
|
<e p="packages" t="ExcludeRecursive" />
|
||||||
|
<e p="Simulator" t="IncludeRecursive">
|
||||||
|
<e p="bin" t="ExcludeRecursive" />
|
||||||
|
<e p="Class1.cs" t="Include" />
|
||||||
|
<e p="obj" t="ExcludeRecursive">
|
||||||
|
<e p="Debug" t="Include">
|
||||||
|
<e p="netcoreapp2.2" t="Include">
|
||||||
|
<e p="Simulator.AssemblyInfo.cs" t="Include" />
|
||||||
|
</e>
|
||||||
|
</e>
|
||||||
|
</e>
|
||||||
|
<e p="Simulator.csproj" t="IncludeRecursive" />
|
||||||
|
</e>
|
||||||
<e p="Tello Drone" t="IncludeRecursive">
|
<e p="Tello Drone" t="IncludeRecursive">
|
||||||
<e p="bin" t="ExcludeRecursive" />
|
<e p="bin" t="ExcludeRecursive" />
|
||||||
<e p="BootStrapper.cs" t="Include" />
|
<e p="BootStrapper.cs" t="Include" />
|
||||||
@@ -70,6 +82,20 @@
|
|||||||
</e>
|
</e>
|
||||||
<e p="TelloDroneUnitTests.csproj" t="IncludeRecursive" />
|
<e p="TelloDroneUnitTests.csproj" t="IncludeRecursive" />
|
||||||
</e>
|
</e>
|
||||||
|
<e p="TelloLibraries" t="IncludeRecursive">
|
||||||
|
<e p="bin" t="ExcludeRecursive" />
|
||||||
|
<e p="Class1.cs" t="Include" />
|
||||||
|
<e p="IUDPClient.cs" t="Include" />
|
||||||
|
<e p="obj" t="ExcludeRecursive">
|
||||||
|
<e p="Debug" t="Include">
|
||||||
|
<e p="netcoreapp2.2" t="Include">
|
||||||
|
<e p="TelloLibraries.AssemblyInfo.cs" t="Include" />
|
||||||
|
</e>
|
||||||
|
</e>
|
||||||
|
</e>
|
||||||
|
<e p="TelloLibraries.csproj" t="IncludeRecursive" />
|
||||||
|
<e p="UDPClient.cs" t="Include" />
|
||||||
|
</e>
|
||||||
</e>
|
</e>
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
8
Simulator/Class1.cs
Normal file
8
Simulator/Class1.cs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Simulator
|
||||||
|
{
|
||||||
|
public class Class1
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
7
Simulator/Simulator.csproj
Normal file
7
Simulator/Simulator.csproj
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -4,6 +4,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tello Drone", "Tello Drone\
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TelloDroneUnitTests", "TelloDroneUnitTests\TelloDroneUnitTests.csproj", "{C3966EBE-273E-4012-9CB4-7F8ACCFB8281}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TelloDroneUnitTests", "TelloDroneUnitTests\TelloDroneUnitTests.csproj", "{C3966EBE-273E-4012-9CB4-7F8ACCFB8281}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TelloLibraries", "TelloLibraries\TelloLibraries.csproj", "{59630784-5D30-4798-8EE9-3AC2B5EC2FF6}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Simulator", "Simulator\Simulator.csproj", "{0D0A89BC-B6EB-46E6-BBBA-F24479F15014}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@@ -18,5 +22,13 @@ Global
|
|||||||
{C3966EBE-273E-4012-9CB4-7F8ACCFB8281}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{C3966EBE-273E-4012-9CB4-7F8ACCFB8281}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{C3966EBE-273E-4012-9CB4-7F8ACCFB8281}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{C3966EBE-273E-4012-9CB4-7F8ACCFB8281}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{C3966EBE-273E-4012-9CB4-7F8ACCFB8281}.Release|Any CPU.Build.0 = Release|Any CPU
|
{C3966EBE-273E-4012-9CB4-7F8ACCFB8281}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{59630784-5D30-4798-8EE9-3AC2B5EC2FF6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{59630784-5D30-4798-8EE9-3AC2B5EC2FF6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{59630784-5D30-4798-8EE9-3AC2B5EC2FF6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{59630784-5D30-4798-8EE9-3AC2B5EC2FF6}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{0D0A89BC-B6EB-46E6-BBBA-F24479F15014}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{0D0A89BC-B6EB-46E6-BBBA-F24479F15014}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{0D0A89BC-B6EB-46E6-BBBA-F24479F15014}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{0D0A89BC-B6EB-46E6-BBBA-F24479F15014}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|||||||
7
TelloLibraries/IUDPClientWrapper.cs
Normal file
7
TelloLibraries/IUDPClientWrapper.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace TelloLibraries
|
||||||
|
{
|
||||||
|
public interface IUDPClientWrapper
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
7
TelloLibraries/IudpClientWrapperWrapper.cs
Normal file
7
TelloLibraries/IudpClientWrapperWrapper.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace TelloLibraries
|
||||||
|
{
|
||||||
|
public class IudpClientWrapperWrapper : IUDPClientWrapper
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
8
TelloLibraries/TelloLibraries.csproj
Normal file
8
TelloLibraries/TelloLibraries.csproj
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
|
<RootNamespace>TelloLibrarys</RootNamespace>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
Reference in New Issue
Block a user