Adding incompletea activity

This commit is contained in:
Nathan Light 2024-02-22 18:27:49 -05:00
commit c9683c31a8
37 changed files with 537 additions and 0 deletions

Binary file not shown.

Binary file not shown.

BIN
.vs/LinqActivity/v17/.suo Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

25
LinqActivity.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34221.43
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LinqActivity", "LinqActivity\LinqActivity.csproj", "{1A4FA6A9-456C-4BDE-8BA6-BFB2DEC147F6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1A4FA6A9-456C-4BDE-8BA6-BFB2DEC147F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1A4FA6A9-456C-4BDE-8BA6-BFB2DEC147F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1A4FA6A9-456C-4BDE-8BA6-BFB2DEC147F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1A4FA6A9-456C-4BDE-8BA6-BFB2DEC147F6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {38D91B02-7110-4898-8950-619AE6A639E0}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

175
LinqActivity/Program.cs Normal file
View File

@ -0,0 +1,175 @@
using System.Collections.Generic;
namespace LinqActivity
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("LINQ Activity - 2/23/2024");
Console.WriteLine("Name: INSERT NAME HERE");
List<Patient> patients = new List<Patient>
{
new Patient("John", 25, 5, 8, 180, new DateTime(2022,2, 18)),
new Patient("Jane", 30, 5, 5, 150, new DateTime(2023,1, 10)),
new Patient("Joe", 28, 6, 0, 200, new DateTime(2020, 7, 23)),
new Patient("Jill", 35, 5, 7, 160, new DateTime(2021, 3, 20)),
new Patient("Jack", 40, 5, 10, 190, new DateTime(2022, 8, 1))
};
List<Patient> transferPatients = new List<Patient>
{
new Patient("Bobby", 35, 5, 8, 180, new DateTime(2022,2, 18)),
new Patient("Jamison", 33, 5, 5, 150, new DateTime(2023,1, 10)),
new Patient("Elijah", 48, 6, 0, 200, new DateTime(2020, 7, 23)),
new Patient("Bill", 15, 5, 7, 160, new DateTime(2021, 3, 20)),
new Patient("Jack", 40, 5, 10, 190, new DateTime(2022, 8, 1)),
new Patient("Jack", 40, 5, 10, 190, new DateTime(2022, 8, 1))
};
Console.WriteLine("\nAll Patients in the Patients list");
DisplayPatients(patients);
Console.WriteLine("\n1.) All Patients over 30 in the Patients list");
//1.) Write a LINQ query that returns all patients over the age of 30 in the "Patients" list
var test1 = AllPatientsOver30(patients);
DisplayPatients(test1);
//2.) Write a LINQ query that takes the patients in the Patients list, and returns a string of their names separated by a comma
Console.WriteLine("\n2.) All Patient Names");
Console.WriteLine(AllPatientNames(patients));
//3.) Write a LINQ query that returns the average weight of all patients in the Patients list
Console.WriteLine("\n3.) Average Weight of All Patients");
Console.WriteLine(AverageWeightOfAllPatients(patients));
//4.) Write a LINQ query that orders the list of patients in the Patients list by DateCreated and returns the most recent
Console.WriteLine("\n4.) Most Recent Patient Created");
var mostRecentPatient = MostRecentPatientCreated(patients);
Console.WriteLine(mostRecentPatient?.ToString() ?? "Patient is NULL");
//5.) Write a LINQ Query that concatenates the two lists of patients together
Console.WriteLine("\n5.) Concatenate Patient Lists");
var joinedPatientLists = ConcatPatientLists(patients, transferPatients);
DisplayPatients(joinedPatientLists);
//6.)Given the last of transferParentNames below, write a LINQ Query within DistinctTransferPatients that returns a list of distinct names
Console.WriteLine("\n6.) Distinct Transfer Patients");
var transferPatientNames = transferPatients.Select(p => p.Name).ToList();
var distinctTransferPatientsNames = DistinctTransferPatients(transferPatientNames);
if(distinctTransferPatientsNames!=null)
Console.WriteLine(string.Join(", ", distinctTransferPatientsNames));
//7.) Write a LINQ Query that checks if the list of patients contains ANY patients with the name "Joe"
Console.WriteLine("\n7.) Contains Joe?");
Console.WriteLine(ContainsJoe(patients));
//8.) Write a LINQ Query that TAKEs the first 3 patients in the patient list
Console.WriteLine("\n8.) First 3 Patients");
var first3Patients = First3Patients(patients);
DisplayPatients(first3Patients);
}//END Main
public static void DisplayPatients(List<Patient> patients)
{
if (patients == null)
{
Console.WriteLine("Patient List Provided is NULL :O");
return;
}
foreach (var patient in patients)
{
Console.WriteLine($"Name: {patient.Name}, Age: {patient.Age}, Height: {patient.HeightFeet}'{patient.HeightInches}\", Weight: {patient.Weight} lbs, DateCreated: {patient.DateCreated.ToString("MMddyyyy")}.");
}
}
public static List<Patient> AllPatientsOver30(List<Patient> patients)
{
return null;
}
public static string AllPatientNames(List<Patient> patients)
{
return null;
}
public static decimal AverageWeightOfAllPatients(List<Patient> patients)
{
return 0;
}
public static Patient MostRecentPatientCreated(List<Patient> patients)
{
return null;
}
public static List<Patient> ConcatPatientLists(List<Patient> patients, List<Patient> transferPatients)
{
return null;
}
public static List<String> DistinctTransferPatients(List<String> transferPatientNames)
{
return null;
}
public static bool ContainsJoe(List<Patient> patients)
{
return false;
}
public static List<Patient> First3Patients(List<Patient> patients)
{
return null;
}
}
public class Patient
{
public Patient(string name, int age, int heightFeet, int heightInches, decimal weight, DateTime dateCreated)
{
Name = name;
Age = age;
HeightFeet = heightFeet;
HeightInches = heightInches;
Weight = weight;
DateCreated = dateCreated;
}
public override string ToString()
{
return $"Name: {Name}, Age: {Age}, Height: {HeightFeet}'{HeightInches}\", Weight: {Weight} lbs, DateCreated: {DateCreated.ToString("MMddyyyy")}.";
}
public string Name { get; set; }
public int Age { get; set; }
public int HeightFeet { get; set; }
public int HeightInches { get; set; }
public decimal Weight { get; set; }
public DateTime DateCreated { get; set; }
}
}

View File

@ -0,0 +1,50 @@
LINQ Activity - 2/23/2024
Name: INSERT NAME HERE
All Patients in the Patients list
Name: John, Age: 25, Height: 5'8", Weight: 180 lbs, DateCreated: 02182022.
Name: Jane, Age: 30, Height: 5'5", Weight: 150 lbs, DateCreated: 01102023.
Name: Joe, Age: 28, Height: 6'0", Weight: 200 lbs, DateCreated: 07232020.
Name: Jill, Age: 35, Height: 5'7", Weight: 160 lbs, DateCreated: 03202021.
Name: Jack, Age: 40, Height: 5'10", Weight: 190 lbs, DateCreated: 08012022.
1.) All Patients over 30 in the Patients list
Name: Jill, Age: 35, Height: 5'7", Weight: 160 lbs, DateCreated: 03202021.
Name: Jack, Age: 40, Height: 5'10", Weight: 190 lbs, DateCreated: 08012022.
2.) All Patient Names
John, Jane, Joe, Jill, Jack
3.) Average Weight of All Patients
176
4.) Most Recent Patient Created
Name: Jane, Age: 30, Height: 5'5", Weight: 150 lbs, DateCreated: 01102023.
5.) Concatenate Patient Lists
Name: John, Age: 25, Height: 5'8", Weight: 180 lbs, DateCreated: 02182022.
Name: Jane, Age: 30, Height: 5'5", Weight: 150 lbs, DateCreated: 01102023.
Name: Joe, Age: 28, Height: 6'0", Weight: 200 lbs, DateCreated: 07232020.
Name: Jill, Age: 35, Height: 5'7", Weight: 160 lbs, DateCreated: 03202021.
Name: Jack, Age: 40, Height: 5'10", Weight: 190 lbs, DateCreated: 08012022.
Name: Bobby, Age: 35, Height: 5'8", Weight: 180 lbs, DateCreated: 02182022.
Name: Jamison, Age: 33, Height: 5'5", Weight: 150 lbs, DateCreated: 01102023.
Name: Elijah, Age: 48, Height: 6'0", Weight: 200 lbs, DateCreated: 07232020.
Name: Bill, Age: 15, Height: 5'7", Weight: 160 lbs, DateCreated: 03202021.
Name: Jack, Age: 40, Height: 5'10", Weight: 190 lbs, DateCreated: 08012022.
Name: Jack, Age: 40, Height: 5'10", Weight: 190 lbs, DateCreated: 08012022.
6.) Distinct Transfer Patients
Bobby, Jamison, Elijah, Bill, Jack
7.) Contains Joe?
True
8.) First 3 Patients
Name: John, Age: 25, Height: 5'8", Weight: 180 lbs, DateCreated: 02182022.
Name: Jane, Age: 30, Height: 5'5", Weight: 150 lbs, DateCreated: 01102023.
Name: Joe, Age: 28, Height: 6'0", Weight: 200 lbs, DateCreated: 07232020.
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\bin\Debug\net6.0\LinqActivity.exe (process 34992) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .

View File

@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"LinqActivity/1.0.0": {
"runtime": {
"LinqActivity.dll": {}
}
}
}
},
"libraries": {
"LinqActivity/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
}
}
}

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]

View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("LinqActivity")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("LinqActivity")]
[assembly: System.Reflection.AssemblyTitleAttribute("LinqActivity")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -0,0 +1 @@
438b036c34a1df04bbcf7f238d6dc799e495b870

View File

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = LinqActivity
build_property.ProjectDir = C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\

View File

@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@ -0,0 +1 @@
218b79da7a08bc07bb997a020130a11d082c22df

View File

@ -0,0 +1,28 @@
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\bin\Debug\net6.0\LinqActivity.exe
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\bin\Debug\net6.0\LinqActivity.deps.json
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\bin\Debug\net6.0\LinqActivity.runtimeconfig.json
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\bin\Debug\net6.0\LinqActivity.dll
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\bin\Debug\net6.0\LinqActivity.pdb
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\obj\Debug\net6.0\LinqActivity.GeneratedMSBuildEditorConfig.editorconfig
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\obj\Debug\net6.0\LinqActivity.AssemblyInfoInputs.cache
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\obj\Debug\net6.0\LinqActivity.AssemblyInfo.cs
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\obj\Debug\net6.0\LinqActivity.csproj.CoreCompileInputs.cache
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\obj\Debug\net6.0\LinqActivity.dll
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\obj\Debug\net6.0\refint\LinqActivity.dll
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\obj\Debug\net6.0\LinqActivity.pdb
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\obj\Debug\net6.0\LinqActivity.genruntimeconfig.cache
C:\Coding Projects - not in repo\LinqActivity\LinqActivity\obj\Debug\net6.0\ref\LinqActivity.dll
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\bin\Debug\net6.0\LinqActivity.exe
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\bin\Debug\net6.0\LinqActivity.deps.json
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\bin\Debug\net6.0\LinqActivity.runtimeconfig.json
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\bin\Debug\net6.0\LinqActivity.dll
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\bin\Debug\net6.0\LinqActivity.pdb
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\obj\Debug\net6.0\LinqActivity.GeneratedMSBuildEditorConfig.editorconfig
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\obj\Debug\net6.0\LinqActivity.AssemblyInfoInputs.cache
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\obj\Debug\net6.0\LinqActivity.AssemblyInfo.cs
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\obj\Debug\net6.0\LinqActivity.csproj.CoreCompileInputs.cache
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\obj\Debug\net6.0\LinqActivity.dll
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\obj\Debug\net6.0\refint\LinqActivity.dll
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\obj\Debug\net6.0\LinqActivity.pdb
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\obj\Debug\net6.0\LinqActivity.genruntimeconfig.cache
C:\GitRepos\MG-TechTalk-LINQ\LinqActivity\obj\Debug\net6.0\ref\LinqActivity.dll

Binary file not shown.

View File

@ -0,0 +1 @@
ad3b8f348f7564c7cd2752667aabc937396fbef4

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,68 @@
{
"format": 1,
"restore": {
"C:\\GitRepos\\MG-TechTalk-LINQ\\LinqActivity\\LinqActivity.csproj": {}
},
"projects": {
"C:\\GitRepos\\MG-TechTalk-LINQ\\LinqActivity\\LinqActivity.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\GitRepos\\MG-TechTalk-LINQ\\LinqActivity\\LinqActivity.csproj",
"projectName": "LinqActivity",
"projectPath": "C:\\GitRepos\\MG-TechTalk-LINQ\\LinqActivity\\LinqActivity.csproj",
"packagesPath": "C:\\Users\\laten\\.nuget\\packages\\",
"outputPath": "C:\\GitRepos\\MG-TechTalk-LINQ\\LinqActivity\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\laten\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.403\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\laten\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\laten\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@ -0,0 +1,74 @@
{
"version": 3,
"targets": {
"net6.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net6.0": []
},
"packageFolders": {
"C:\\Users\\laten\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\GitRepos\\MG-TechTalk-LINQ\\LinqActivity\\LinqActivity.csproj",
"projectName": "LinqActivity",
"projectPath": "C:\\GitRepos\\MG-TechTalk-LINQ\\LinqActivity\\LinqActivity.csproj",
"packagesPath": "C:\\Users\\laten\\.nuget\\packages\\",
"outputPath": "C:\\GitRepos\\MG-TechTalk-LINQ\\LinqActivity\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\laten\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.403\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "pWNG4+B2Uri+Cq6CEGGdUPIaSa97+gvGEG80SRHApu9cM29gpQX7kmLnopcTYO1achJvSv82L6yf30FFtsTowQ==",
"success": true,
"projectFilePath": "C:\\GitRepos\\MG-TechTalk-LINQ\\LinqActivity\\LinqActivity.csproj",
"expectedPackageFiles": [],
"logs": []
}