-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathBoxed.DotnetNewTest.csproj
More file actions
43 lines (35 loc) · 1.62 KB
/
Boxed.DotnetNewTest.csproj
File metadata and controls
43 lines (35 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Build">
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Label="Package">
<Product>ASP.NET Core Dotnet New Test Boxed</Product>
<Description>ASP.NET Core test framework for dotnet new project templates.</Description>
<PackageTags>ASP.NET;ASP.NET Core;dotnet new;template;Boxed;Muhammad Rehan Saeed;Framework;</PackageTags>
<PackageReadmeFile>Boxed.DotnetNewTest.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Label="Versioning">
<MinVerTagPrefix>Boxed.DotnetNewTest.</MinVerTagPrefix>
</PropertyGroup>
<ItemGroup Label="Package References">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup Label="Package References (.NET 7)" Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.12" />
</ItemGroup>
<ItemGroup Label="Package References (.NET 6)" Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.12" />
</ItemGroup>
<ItemGroup Label="Files">
<None Include="..\..\Documentation\Boxed.DotnetNewTest.md" Pack="true" PackagePath="\" />
<Compile Update="Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<EmbeddedResource Update="Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>