Skip to content

Commit 6fc237f

Browse files
committed
Added Pipeline.Test project (#282)
1 parent 7776934 commit 6fc237f

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

MyTested.AspNetCore.Mvc.sln

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Test.Core.MissingWebSdk", "
235235
EndProject
236236
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyTested.AspNetCore.Mvc.Pipeline", "src\MyTested.AspNetCore.Mvc.Pipeline\MyTested.AspNetCore.Mvc.Pipeline.csproj", "{FA139588-1E38-4242-BB71-7784010DFEE4}"
237237
EndProject
238+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyTested.AspNetCore.Mvc.Pipeline.Test", "test\MyTested.AspNetCore.Mvc.Pipeline.Test\MyTested.AspNetCore.Mvc.Pipeline.Test.csproj", "{241D1E6E-6639-4D45-98A0-0BFA1F200C5A}"
239+
EndProject
238240
Global
239241
GlobalSection(SolutionConfigurationPlatforms) = preSolution
240242
Debug|Any CPU = Debug|Any CPU
@@ -657,6 +659,10 @@ Global
657659
{FA139588-1E38-4242-BB71-7784010DFEE4}.Debug|Any CPU.Build.0 = Debug|Any CPU
658660
{FA139588-1E38-4242-BB71-7784010DFEE4}.Release|Any CPU.ActiveCfg = Release|Any CPU
659661
{FA139588-1E38-4242-BB71-7784010DFEE4}.Release|Any CPU.Build.0 = Release|Any CPU
662+
{241D1E6E-6639-4D45-98A0-0BFA1F200C5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
663+
{241D1E6E-6639-4D45-98A0-0BFA1F200C5A}.Debug|Any CPU.Build.0 = Debug|Any CPU
664+
{241D1E6E-6639-4D45-98A0-0BFA1F200C5A}.Release|Any CPU.ActiveCfg = Release|Any CPU
665+
{241D1E6E-6639-4D45-98A0-0BFA1F200C5A}.Release|Any CPU.Build.0 = Release|Any CPU
660666
EndGlobalSection
661667
GlobalSection(SolutionProperties) = preSolution
662668
HideSolutionNode = FALSE
@@ -775,6 +781,7 @@ Global
775781
{32B24AD2-9D35-4A5A-86CE-8C7862DED27E} = {D140FA14-A6C2-4279-8A41-35BC55279DA8}
776782
{E88A7195-A252-4C51-8255-6442ADD67874} = {7BEC9808-8650-4322-BCC6-1D7D91B53678}
777783
{FA139588-1E38-4242-BB71-7784010DFEE4} = {09353A03-2B0C-496B-8EB1-2CB6A22D758B}
784+
{241D1E6E-6639-4D45-98A0-0BFA1F200C5A} = {D140FA14-A6C2-4279-8A41-35BC55279DA8}
778785
EndGlobalSection
779786
GlobalSection(ExtensibilityGlobals) = postSolution
780787
SolutionGuid = {99A2DEDD-5195-4EE6-A546-B1CA54C5539F}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.0</TargetFramework>
5+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
6+
<AssemblyName>MyTested.AspNetCore.Mvc.Test</AssemblyName>
7+
<AssemblyOriginatorKeyFile>../../tools/Key.snk</AssemblyOriginatorKeyFile>
8+
<SignAssembly>true</SignAssembly>
9+
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
10+
<PackageId>MyTested.AspNetCore.Mvc.Pipeline.Test</PackageId>
11+
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
12+
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
13+
<PreserveCompilationContext>true</PreserveCompilationContext>
14+
<RootNamespace>MyTested.AspNetCore.Mvc.Test</RootNamespace>
15+
</PropertyGroup>
16+
17+
<ItemGroup>
18+
<None Update="testconfig.json">
19+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
20+
</None>
21+
</ItemGroup>
22+
23+
<ItemGroup>
24+
<ProjectReference Include="..\..\src\MyTested.AspNetCore.Mvc.Pipeline\MyTested.AspNetCore.Mvc.Pipeline.csproj" />
25+
<ProjectReference Include="..\MyTested.AspNetCore.Mvc.Test.Setups\MyTested.AspNetCore.Mvc.Test.Setups.csproj" />
26+
</ItemGroup>
27+
28+
<ItemGroup>
29+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
30+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
31+
<PrivateAssets>all</PrivateAssets>
32+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
33+
</PackageReference>
34+
<PackageReference Include="xunit" Version="2.4.1" />
35+
</ItemGroup>
36+
37+
</Project>

0 commit comments

Comments
 (0)