Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • schneider/prog2-ss2020-wienkop
  • Wienkop/prog2-ss2020-wienkop
2 results
Show changes
Showing
with 33 additions and 12 deletions
No preview for this file type
No preview for this file type
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
......@@ -58,7 +58,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.201\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.302\\RuntimeIdentifierGraph.json"
}
}
}
......
{
"version": 2,
"dgSpecHash": "8QASeFsUfSSjUvRvUNspPzqFs6HyU4AbIaqy0SrraeSCtFVt4oBAjcGrGn33jVDx39i9AavlxSAhptgoyU2YqA==",
"dgSpecHash": "TuejB8IT3bhuxCTm2UEpgSnp1WsAS8RgfLumCaTtliTFqXXtXcEDoytaua6LGYTulbW6aVTCQgXLcqt0kY3gxw==",
"success": true,
"projectFilePath": "C:\\Users\\wienkop\\source\\repos\\prog2-ss2020-wienkop\\01OperatorOverloading\\01OperatorOverloading.csproj",
"expectedPackageFiles": [],
......
......@@ -15,8 +15,14 @@ namespace _01OperatorTrueFalse
this.status = status;
}
public static bool operator true(LaunchStatus x) => x == Green || x == Yellow;
public static bool operator false(LaunchStatus x) => x == Red;
public static bool operator true(LaunchStatus x)
{
Console.WriteLine($"OP-true {x == Green || x == Yellow}"); return x == Green || x == Yellow;
}
public static bool operator false(LaunchStatus x)
{
Console.WriteLine($"OP-false: {x == Red}"); return x == Red;
}
public static LaunchStatus operator &(LaunchStatus x, LaunchStatus y)
{
......@@ -61,6 +67,9 @@ namespace _01OperatorTrueFalse
Console.WriteLine(okToLaunch1 ? "Ready to go!" : "Wait!");
// okToLaunch1 ---(op true)--> bool
//if (okToLaunch1.Equals(okToLaunch2))
Console.WriteLine( "*************");
if (okToLaunch1)
Console.WriteLine("okToLaunch1 = true");
}
static LaunchStatus GetFuelLaunchStatus()
......
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -52,7 +52,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.201\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.302\\RuntimeIdentifierGraph.json"
}
}
}
......
......@@ -7,7 +7,7 @@
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\wienkop\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.5.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.6.0</NuGetToolVersion>
</PropertyGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
......
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
c0523642d3f3714f80c0cf31b3f8720f51a0bc09
08cc8c79ec5522b629c871dea671639b9cadb17f
No preview for this file type
No preview for this file type
No preview for this file type
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
......@@ -13,11 +13,11 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\wienkop\\Source\\Repos\\prog2-ss2020-wienkop\\01OperatorTrueFalse\\01OperatorTrueFalse.csproj",
"projectUniqueName": "C:\\Users\\wienkop\\source\\repos\\prog2-ss2020-wienkop\\01OperatorTrueFalse\\01OperatorTrueFalse.csproj",
"projectName": "01OperatorTrueFalse",
"projectPath": "C:\\Users\\wienkop\\Source\\Repos\\prog2-ss2020-wienkop\\01OperatorTrueFalse\\01OperatorTrueFalse.csproj",
"projectPath": "C:\\Users\\wienkop\\source\\repos\\prog2-ss2020-wienkop\\01OperatorTrueFalse\\01OperatorTrueFalse.csproj",
"packagesPath": "C:\\Users\\wienkop\\.nuget\\packages\\",
"outputPath": "C:\\Users\\wienkop\\Source\\Repos\\prog2-ss2020-wienkop\\01OperatorTrueFalse\\obj\\",
"outputPath": "C:\\Users\\wienkop\\source\\repos\\prog2-ss2020-wienkop\\01OperatorTrueFalse\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\wienkop\\AppData\\Roaming\\NuGet\\NuGet.Config",
......@@ -58,7 +58,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.201\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.302\\RuntimeIdentifierGraph.json"
}
}
}
......
{
"version": 2,
"dgSpecHash": "GmPvgMEmw74mpW6LkOdRXAwnFzHJn4GJOGSo90vCnL/3MziorqrSQlR4//y04OWn3wdFzvrCCK4qY0u2WhqFrg==",
"dgSpecHash": "izuzl1FxpzFp0jsJUwwBaFL9PQhOikkC+M9NrAvZiCBt1pBB/iynITfe6drGq0jExvLEzYjZk56LqHGlPF62Xw==",
"success": true,
"projectFilePath": "C:\\Users\\wienkop\\source\\repos\\prog2-ss2020-wienkop\\01OperatorTrueFalse\\01OperatorTrueFalse.csproj",
"expectedPackageFiles": [],
......