-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUmbraco.Community.PerformanceTestDataSeeder.csproj
More file actions
38 lines (34 loc) · 1.81 KB
/
Umbraco.Community.PerformanceTestDataSeeder.csproj
File metadata and controls
38 lines (34 loc) · 1.81 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Umbraco.Community.PerformanceTestDataSeeder</RootNamespace>
<LangVersion>latest</LangVersion>
<!-- NuGet Package Metadata -->
<PackageId>Umbraco.Community.PerformanceTestDataSeeder</PackageId>
<!-- v1.x = Umbraco 13/14, v2.x = Umbraco 15/16 (separate branch) -->
<Version>1.0.0</Version>
<Authors>Your Name</Authors>
<Company>Your Company</Company>
<Title>Umbraco Performance Test Data Seeder</Title>
<Description>A configurable performance test data seeder for Umbraco CMS v13/14 for performance and load testing. Automatically seeds languages, dictionary items, data types, document types, media, content, and users.</Description>
<PackageTags>umbraco;cms;seeder;test-data;performance;load-testing;umbraco13;umbraco14</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<!-- Generate NuGet package on build (set to false for development) -->
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Bogus" Version="35.6.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="Umbraco.Cms.Core" Version="[13.0.0,15.0.0)" />
<PackageReference Include="Umbraco.Cms.Infrastructure" Version="[13.0.0,15.0.0)" />
<PackageReference Include="Umbraco.Cms.Web.Common" Version="[13.0.0,15.0.0)" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>