Skip to content

Commit

Permalink
ACCEPTANCE: Project Init
Browse files Browse the repository at this point in the history
  • Loading branch information
glhays committed Mar 7, 2024
1 parent 24d6aba commit 5c46ef6
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CleanMoq" Version="1.0.0" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Tynamix.ObjectFiller" Version="1.5.8" />
<PackageReference Include="WireMock.Net" Version="1.5.47" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\RESTFulSense.WebAssembly\RESTFulSense.WebAssembly.csproj" />
</ItemGroup>

</Project>
6 changes: 6 additions & 0 deletions RESTFulSense.sln
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RESTFulSense.WebAssembly.Te
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RESTFulSense.Tests.Acceptance", "RESTFulSense.Tests.Acceptance\RESTFulSense.Tests.Acceptance.csproj", "{90C7D1B5-7018-4FC4-A587-F546370D4411}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RESTFulSense.WebAssenbly.Tests.Acceptance", "RESTFulSense.WebAssenbly.Tests.Acceptance\RESTFulSense.WebAssenbly.Tests.Acceptance.csproj", "{4426B394-62EE-4937-B6A8-0208893A8969}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -51,6 +53,10 @@ Global
{90C7D1B5-7018-4FC4-A587-F546370D4411}.Debug|Any CPU.Build.0 = Debug|Any CPU
{90C7D1B5-7018-4FC4-A587-F546370D4411}.Release|Any CPU.ActiveCfg = Release|Any CPU
{90C7D1B5-7018-4FC4-A587-F546370D4411}.Release|Any CPU.Build.0 = Release|Any CPU
{4426B394-62EE-4937-B6A8-0208893A8969}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4426B394-62EE-4937-B6A8-0208893A8969}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4426B394-62EE-4937-B6A8-0208893A8969}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4426B394-62EE-4937-B6A8-0208893A8969}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 5c46ef6

Please sign in to comment.