Revize c318a92c
Přidáno uživatelem Pultak před asi 3 roky(ů)
ld_client/LDClient/LDClient.csproj | ||
---|---|---|
1 |
<Project Sdk="Microsoft.NET.Sdk"> |
|
2 |
|
|
3 |
<PropertyGroup> |
|
4 |
<OutputType>Exe</OutputType> |
|
5 |
<TargetFramework>net6.0</TargetFramework> |
|
6 |
<ImplicitUsings>enable</ImplicitUsings> |
|
7 |
<Nullable>enable</Nullable> |
|
8 |
</PropertyGroup> |
|
9 |
|
|
10 |
<ItemGroup> |
|
11 |
<Reference Include="t32apinet"> |
|
12 |
<HintPath>..\dotnet\t32apinet\bin\Release\t32apinet.dll</HintPath> |
|
13 |
</Reference> |
|
14 |
</ItemGroup> |
|
15 |
|
|
16 |
<ItemGroup> |
|
17 |
<Folder Include="NewFolder\" /> |
|
18 |
</ItemGroup> |
|
19 |
|
|
20 |
</Project> |
ld_client/LDClient/Program.cs | ||
---|---|---|
1 |
using System; |
|
2 |
|
|
3 |
|
|
4 |
class Program { |
|
5 |
|
|
6 |
// Main Method |
|
7 |
static public void Main() { |
|
8 |
|
|
9 |
Console.WriteLine("Main Method"); |
|
10 |
} |
|
11 |
} |
ld_client/LDClientTests/LDClientTests.csproj | ||
---|---|---|
1 |
<Project Sdk="Microsoft.NET.Sdk"> |
|
2 |
|
|
3 |
<PropertyGroup> |
|
4 |
<TargetFramework>net6.0</TargetFramework> |
|
5 |
<Nullable>enable</Nullable> |
|
6 |
|
|
7 |
<IsPackable>false</IsPackable> |
|
8 |
</PropertyGroup> |
|
9 |
|
|
10 |
<ItemGroup> |
|
11 |
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" /> |
|
12 |
<PackageReference Include="NUnit" Version="3.13.2" /> |
|
13 |
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" /> |
|
14 |
<PackageReference Include="coverlet.collector" Version="3.1.0" /> |
|
15 |
</ItemGroup> |
|
16 |
|
|
17 |
</Project> |
ld_client/LDClientTests/UnitTest1.cs | ||
---|---|---|
1 |
using NUnit.Framework; |
|
2 |
|
|
3 |
namespace LDClientTests { |
|
4 |
public class Tests { |
|
5 |
[SetUp] |
|
6 |
public void Setup() { |
|
7 |
|
|
8 |
} |
|
9 |
|
|
10 |
[Test] |
|
11 |
public void Test1() { |
|
12 |
Assert.Pass(); |
|
13 |
} |
|
14 |
} |
|
15 |
} |
ld_client/LauterbachDebuggerClient.sln | ||
---|---|---|
1 |
|
|
2 |
Microsoft Visual Studio Solution File, Format Version 12.00 |
|
3 |
# Visual Studio Version 17 |
|
4 |
VisualStudioVersion = 17.1.32210.238 |
|
5 |
MinimumVisualStudioVersion = 10.0.40219.1 |
|
6 |
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LDClient", "LDClient\LDClient.csproj", "{26616C14-A61B-4611-8CD0-D29837FA34E7}" |
|
7 |
EndProject |
|
8 |
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LDClientTests", "LDClientTests\LDClientTests.csproj", "{5A1DB888-70E5-41E8-A900-FC22B51727F8}" |
|
9 |
EndProject |
|
10 |
Global |
|
11 |
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
|
12 |
Debug|Any CPU = Debug|Any CPU |
|
13 |
Release|Any CPU = Release|Any CPU |
|
14 |
EndGlobalSection |
|
15 |
GlobalSection(ProjectConfigurationPlatforms) = postSolution |
|
16 |
{26616C14-A61B-4611-8CD0-D29837FA34E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
|
17 |
{26616C14-A61B-4611-8CD0-D29837FA34E7}.Debug|Any CPU.Build.0 = Debug|Any CPU |
|
18 |
{26616C14-A61B-4611-8CD0-D29837FA34E7}.Release|Any CPU.ActiveCfg = Release|Any CPU |
|
19 |
{26616C14-A61B-4611-8CD0-D29837FA34E7}.Release|Any CPU.Build.0 = Release|Any CPU |
|
20 |
{5A1DB888-70E5-41E8-A900-FC22B51727F8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
|
21 |
{5A1DB888-70E5-41E8-A900-FC22B51727F8}.Debug|Any CPU.Build.0 = Debug|Any CPU |
|
22 |
{5A1DB888-70E5-41E8-A900-FC22B51727F8}.Release|Any CPU.ActiveCfg = Release|Any CPU |
|
23 |
{5A1DB888-70E5-41E8-A900-FC22B51727F8}.Release|Any CPU.Build.0 = Release|Any CPU |
|
24 |
EndGlobalSection |
|
25 |
GlobalSection(SolutionProperties) = preSolution |
|
26 |
HideSolutionNode = FALSE |
|
27 |
EndGlobalSection |
|
28 |
GlobalSection(ExtensibilityGlobals) = postSolution |
|
29 |
SolutionGuid = {189367A8-6FB6-4C6C-85EF-FEA949122C26} |
|
30 |
EndGlobalSection |
|
31 |
EndGlobal |
Také k dispozici: Unified diff
re #9437 initial lauterbach debugger client structure setup