Skip to content

Commit 65caf2a

Browse files
committedMar 13, 2024
more build tweaks
1 parent 7fb2bd6 commit 65caf2a

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed
 

‎Peaky.Tests/Peaky.Tests.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
<ItemGroup>
1414
<PackageReference Include="fluentassertions" Version="6.12.0" />
15-
<PackageReference Include="microsoft.aspnetcore.mvc" Version="2.2.0" />
1615
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.1" />
1716
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1817
<PackageReference Include="Pocket.Disposable" Version="1.1.0">

‎Peaky.sln

+9
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peaky.Tests", "Peaky.Tests\
1313
EndProject
1414
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Sample", "Sample", "{CE4A4BEF-36B0-4AEE-A618-59D4E886458E}"
1515
EndProject
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peaky.SampleWebApplication", "Sample\Peaky.SampleWebApplication\Peaky.SampleWebApplication.csproj", "{FAEFA359-2A5C-48A0-9FFB-F9FDF4242DE8}"
17+
EndProject
1618
Global
1719
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1820
Debug|Any CPU = Debug|Any CPU
@@ -32,13 +34,20 @@ Global
3234
{23B1A4D6-6FB3-4FDB-BC35-A4F5A3B87063}.Development|Any CPU.Build.0 = Debug|Any CPU
3335
{23B1A4D6-6FB3-4FDB-BC35-A4F5A3B87063}.Release|Any CPU.ActiveCfg = Release|Any CPU
3436
{23B1A4D6-6FB3-4FDB-BC35-A4F5A3B87063}.Release|Any CPU.Build.0 = Release|Any CPU
37+
{FAEFA359-2A5C-48A0-9FFB-F9FDF4242DE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
38+
{FAEFA359-2A5C-48A0-9FFB-F9FDF4242DE8}.Debug|Any CPU.Build.0 = Debug|Any CPU
39+
{FAEFA359-2A5C-48A0-9FFB-F9FDF4242DE8}.Development|Any CPU.ActiveCfg = Debug|Any CPU
40+
{FAEFA359-2A5C-48A0-9FFB-F9FDF4242DE8}.Development|Any CPU.Build.0 = Debug|Any CPU
41+
{FAEFA359-2A5C-48A0-9FFB-F9FDF4242DE8}.Release|Any CPU.ActiveCfg = Release|Any CPU
42+
{FAEFA359-2A5C-48A0-9FFB-F9FDF4242DE8}.Release|Any CPU.Build.0 = Release|Any CPU
3543
EndGlobalSection
3644
GlobalSection(SolutionProperties) = preSolution
3745
HideSolutionNode = FALSE
3846
EndGlobalSection
3947
GlobalSection(NestedProjects) = preSolution
4048
{16720C36-CC74-4884-B13F-E19D9DE7D96A} = {9C803CA4-398F-4747-98AE-8B12D40A5A35}
4149
{23B1A4D6-6FB3-4FDB-BC35-A4F5A3B87063} = {6EEAB5F0-597E-43CF-9A7C-1842292E9C2E}
50+
{FAEFA359-2A5C-48A0-9FFB-F9FDF4242DE8} = {CE4A4BEF-36B0-4AEE-A618-59D4E886458E}
4251
EndGlobalSection
4352
GlobalSection(ExtensibilityGlobals) = postSolution
4453
SolutionGuid = {CD6549AC-34F7-4BE4-B086-25D854FA4240}

‎Sample/Peaky.SampleWebApplication/Peaky.SampleWebApplication.csproj

+10-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,22 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="fluentassertions" Version="6.12.0" />
8+
<Compile Remove="Scripts\**" />
9+
<Compile Remove="wwwroot\**" />
10+
<Content Remove="Scripts\**" />
11+
<Content Remove="wwwroot\**" />
12+
<EmbeddedResource Remove="Scripts\**" />
13+
<EmbeddedResource Remove="wwwroot\**" />
14+
<None Remove="Scripts\**" />
15+
<None Remove="wwwroot\**" />
916
</ItemGroup>
1017

1118
<ItemGroup>
12-
<ProjectReference Include="..\..\Peaky\Peaky.csproj" />
19+
<PackageReference Include="fluentassertions" Version="6.12.0" />
1320
</ItemGroup>
1421

1522
<ItemGroup>
16-
<Folder Include="wwwroot\" />
17-
<Folder Include="Scripts\" />
23+
<ProjectReference Include="..\..\Peaky\Peaky.csproj" />
1824
</ItemGroup>
1925

2026
</Project>

0 commit comments

Comments
 (0)
Please sign in to comment.