Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .vs/Assessment/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified .vs/Assessment/v17/.suo
Binary file not shown.
Binary file added .vs/Assessment/v17/TestStore/0/000.testlog
Binary file not shown.
Binary file added .vs/Assessment/v17/TestStore/0/testlog.manifest
Binary file not shown.
Binary file added .vs/LeuchterSchnuppertag/v17/.wsuo
Binary file not shown.
8 changes: 7 additions & 1 deletion Assessment.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32505.173
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assessment", "Assessment\Assessment.csproj", "{F793AFF6-9AF1-47A2-B022-0DC52C69018E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Assessment", "Assessment\Assessment.csproj", "{F793AFF6-9AF1-47A2-B022-0DC52C69018E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTest", "UniTest\UnitTest.csproj", "{5D6154D3-47F0-4809-957D-9D513BDB76F9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -15,6 +17,10 @@ Global
{F793AFF6-9AF1-47A2-B022-0DC52C69018E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F793AFF6-9AF1-47A2-B022-0DC52C69018E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F793AFF6-9AF1-47A2-B022-0DC52C69018E}.Release|Any CPU.Build.0 = Release|Any CPU
{5D6154D3-47F0-4809-957D-9D513BDB76F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D6154D3-47F0-4809-957D-9D513BDB76F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5D6154D3-47F0-4809-957D-9D513BDB76F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5D6154D3-47F0-4809-957D-9D513BDB76F9}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
6 changes: 5 additions & 1 deletion Assessment/Assessment.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
Expand All @@ -14,4 +14,8 @@
<Folder Include="Controllers\" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\UniTest\UnitTest.csproj" />
</ItemGroup>

</Project>
56 changes: 56 additions & 0 deletions Assessment/Contollers/TimelogTypesContoller.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
using Microsoft.AspNetCore.Mvc;
using Assessment.Models;

namespace Assessment.Controllers
{
// Controller für die Verwaltung von TimelogType.
[Route("/timelogtypes")]
[ApiController]
public class TimelogTypesController : ControllerBase
{
private static readonly List<TimelogTypeAPI> TimelogTypes = new List<TimelogTypeAPI>
{
// Statische Liste von TimelogType als Beispieldaten.
new TimelogTypeAPI { TimelogTypeId = 1, TimelogType = "Hausaufgaben", Budget = 60 },
new TimelogTypeAPI { TimelogTypeId = 2, TimelogType = "Lernen", Budget = 120 },
new TimelogTypeAPI { TimelogTypeId = 3, TimelogType = "Pause", Budget = 30 }
};

// Ruft alle TimelogTypes ab.
[HttpGet]
public IEnumerable<TimelogTypeAPI> GetTimelogTypes()
{
return TimelogTypes;
}

// Ruft einen spezifischen TimelogType anhand seiner ID ab.
[HttpGet("{timelogTypeId}")]
public ActionResult<TimelogTypeAPI> GetTimelogType(int timelogTypeId)
{
var timelogType = TimelogTypes.FirstOrDefault(t => t.TimelogTypeId == timelogTypeId);
if (timelogType == null)
{
return NotFound();
}
return timelogType;
}

// Erstellt einen neuen TimelogType.
[HttpPut]
public ActionResult<TimelogTypeAPI> CreateTimelogType([FromBody] TimelogTypeAPI newTimelogType)
{
if (newTimelogType == null)
{
return BadRequest();
}

// Setze eine neue ID für den TimelogType.
int newId = TimelogTypes.Any() ? TimelogTypes.Max(t => t.TimelogTypeId) + 1 : 1;
newTimelogType.TimelogTypeId = newId;

TimelogTypes.Add(newTimelogType);
return CreatedAtAction(nameof(GetTimelogType), new { timelogTypeId = newTimelogType.TimelogTypeId }, newTimelogType);
}
}
}

14 changes: 14 additions & 0 deletions Assessment/Models/TimelogTypeAPI.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
namespace Assessment.Models
{
public class TimelogTypeAPI
{
// Ruft die eindeutige ID für den TimelogType ab oder legt sie fest.
public int TimelogTypeId { get; set; }

// Ruft den Namen des TimelogType ab oder legt ihn fest.
public string TimelogType { get; set; }

// Ruft das Budget (die Menge an Zeit) für den TimelogType ab oder legt es fest.
public float Budget { get; set; }
}
}
5 changes: 4 additions & 1 deletion Assessment/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
app.UseSwaggerUI(options => // UseSwaggerUI is called only in Development.
{
options.SwaggerEndpoint("/swagger/v1/swagger.json", "v1");
});
}

app.UseHttpsRedirection();
Expand Down
Binary file modified Assessment/bin/Debug/net6.0/Assessment.dll
Binary file not shown.
Binary file modified Assessment/bin/Debug/net6.0/Assessment.exe
Binary file not shown.
Binary file modified Assessment/bin/Debug/net6.0/Assessment.pdb
Binary file not shown.
102 changes: 92 additions & 10 deletions Assessment/obj/Assessment.csproj.nuget.dgspec.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"format": 1,
"restore": {
"C:\\repos\\LAG-SE-Playground\\Assessment\\Assessment\\Assessment.csproj": {}
"C:\\Users\\lucab\\OneDrive\\Desktop\\LeuchterSchnuppertag\\Assessment\\Assessment.csproj": {}
},
"projects": {
"C:\\repos\\LAG-SE-Playground\\Assessment\\Assessment\\Assessment.csproj": {
"C:\\Users\\lucab\\OneDrive\\Desktop\\LeuchterSchnuppertag\\Assessment\\Assessment.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\repos\\LAG-SE-Playground\\Assessment\\Assessment\\Assessment.csproj",
"projectUniqueName": "C:\\Users\\lucab\\OneDrive\\Desktop\\LeuchterSchnuppertag\\Assessment\\Assessment.csproj",
"projectName": "Assessment",
"projectPath": "C:\\repos\\LAG-SE-Playground\\Assessment\\Assessment\\Assessment.csproj",
"packagesPath": "C:\\Users\\anco\\.nuget\\packages\\",
"outputPath": "C:\\repos\\LAG-SE-Playground\\Assessment\\Assessment\\obj\\",
"projectPath": "C:\\Users\\lucab\\OneDrive\\Desktop\\LeuchterSchnuppertag\\Assessment\\Assessment.csproj",
"packagesPath": "C:\\Users\\lucab\\.nuget\\packages\\",
"outputPath": "C:\\Users\\lucab\\OneDrive\\Desktop\\LeuchterSchnuppertag\\Assessment\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\anco\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Users\\lucab\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
Expand All @@ -27,7 +27,11 @@
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
"projectReferences": {
"C:\\Users\\lucab\\OneDrive\\Desktop\\LeuchterSchnuppertag\\UniTest\\UnitTest.csproj": {
"projectPath": "C:\\Users\\lucab\\OneDrive\\Desktop\\LeuchterSchnuppertag\\UniTest\\UnitTest.csproj"
}
}
}
},
"warningProperties": {
Expand All @@ -51,7 +55,8 @@
"net47",
"net471",
"net472",
"net48"
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
Expand All @@ -63,7 +68,84 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.305\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json"
}
}
},
"C:\\Users\\lucab\\OneDrive\\Desktop\\LeuchterSchnuppertag\\UniTest\\UnitTest.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\lucab\\OneDrive\\Desktop\\LeuchterSchnuppertag\\UniTest\\UnitTest.csproj",
"projectName": "UnitTest",
"projectPath": "C:\\Users\\lucab\\OneDrive\\Desktop\\LeuchterSchnuppertag\\UniTest\\UnitTest.csproj",
"packagesPath": "C:\\Users\\lucab\\.nuget\\packages\\",
"outputPath": "C:\\Users\\lucab\\OneDrive\\Desktop\\LeuchterSchnuppertag\\UniTest\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\lucab\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Microsoft.NET.Test.Sdk": {
"target": "Package",
"version": "[17.5.0, )"
},
"coverlet.collector": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
"version": "[3.2.0, )"
},
"xunit": {
"target": "Package",
"version": "[2.4.2, )"
},
"xunit.runner.visualstudio": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
"version": "[2.4.5, )"
}
},
"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.401\\RuntimeIdentifierGraph.json"
}
}
}
Expand Down
9 changes: 5 additions & 4 deletions Assessment/obj/Assessment.csproj.nuget.g.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,19 @@
<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\anco\.nuget\packages\</NuGetPackageFolders>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\lucab\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\anco\.nuget\packages\" />
<SourceRoot Include="C:\Users\lucab\.nuget\packages\" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props')" />
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore\6.2.3\build\Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore\6.2.3\build\Swashbuckle.AspNetCore.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\anco\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
<Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">C:\Users\lucab\.nuget\packages\xunit.analyzers\1.0.0</Pkgxunit_analyzers>
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\lucab\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Assessment
build_property.RootNamespace = Assessment
build_property.ProjectDir = C:\repos\LAG-SE-Playground\Assessment\Assessment\
build_property.ProjectDir = C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\
build_property.RazorLangVersion = 6.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\repos\LAG-SE-Playground\Assessment\Assessment
build_property.MSBuildProjectDirectory = C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment
build_property._RazorSourceGeneratorDebug =
Binary file modified Assessment/obj/Debug/net6.0/Assessment.assets.cache
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
65fc28b4182026480d999d2c21dd20173a81937f
d1a421bf11575dac4daeaea843b47c32d6d2d867
32 changes: 32 additions & 0 deletions Assessment/obj/Debug/net6.0/Assessment.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,35 @@ C:\repos\LAG-SE-Playground\Assessment\Assessment\obj\Debug\net6.0\refint\Assessm
C:\repos\LAG-SE-Playground\Assessment\Assessment\obj\Debug\net6.0\Assessment.pdb
C:\repos\LAG-SE-Playground\Assessment\Assessment\obj\Debug\net6.0\Assessment.genruntimeconfig.cache
C:\repos\LAG-SE-Playground\Assessment\Assessment\obj\Debug\net6.0\ref\Assessment.dll
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\bin\Debug\net6.0\appsettings.Development.json
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\bin\Debug\net6.0\appsettings.json
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\bin\Debug\net6.0\Assessment.exe
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\bin\Debug\net6.0\Assessment.deps.json
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\bin\Debug\net6.0\Assessment.runtimeconfig.json
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\bin\Debug\net6.0\Assessment.dll
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\bin\Debug\net6.0\Assessment.pdb
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\bin\Debug\net6.0\Microsoft.OpenApi.dll
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\Assessment.csproj.AssemblyReference.cache
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\Assessment.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\Assessment.AssemblyInfoInputs.cache
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\Assessment.AssemblyInfo.cs
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\Assessment.csproj.CoreCompileInputs.cache
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\Assessment.MvcApplicationPartsAssemblyInfo.cs
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\Assessment.MvcApplicationPartsAssemblyInfo.cache
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\staticwebassets\msbuild.Assessment.Microsoft.AspNetCore.StaticWebAssets.props
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\staticwebassets\msbuild.build.Assessment.props
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\staticwebassets\msbuild.buildMultiTargeting.Assessment.props
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\staticwebassets\msbuild.buildTransitive.Assessment.props
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\staticwebassets.pack.json
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\staticwebassets.build.json
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\staticwebassets.development.json
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\scopedcss\bundle\Assessment.styles.css
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\Assessment.csproj.CopyComplete
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\Assessment.dll
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\refint\Assessment.dll
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\Assessment.pdb
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\Assessment.genruntimeconfig.cache
C:\Users\lucab\OneDrive\Desktop\LeuchterSchnuppertag\Assessment\obj\Debug\net6.0\ref\Assessment.dll
Binary file modified Assessment/obj/Debug/net6.0/Assessment.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1ab5a6f557a5691ef77a922d412d034db8857368
fa700459f03ce9af75471b07cc725d85a98e0d26
Binary file modified Assessment/obj/Debug/net6.0/Assessment.pdb
Binary file not shown.
Binary file modified Assessment/obj/Debug/net6.0/apphost.exe
Binary file not shown.
Binary file modified Assessment/obj/Debug/net6.0/ref/Assessment.dll
Binary file not shown.
Binary file modified Assessment/obj/Debug/net6.0/refint/Assessment.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<Project>
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<Project>
<Import Project="..\build\Assessment.props" />
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<Project>
<Import Project="..\buildMultiTargeting\Assessment.props" />
</Project>
Loading