-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharedAssemblyInfo.targets
More file actions
40 lines (36 loc) · 1.86 KB
/
SharedAssemblyInfo.targets
File metadata and controls
40 lines (36 loc) · 1.86 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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>11.0</LangVersion>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup>
<Version>1.1.0.0</Version>
<Authors>Anton Angelov</Authors>
<Company>Automate The Planet Ltd.</Company>
<Product>Testimize – Test and Data Generation Library</Product>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<NeutralLanguage>en</NeutralLanguage>
<Copyright>Copyright © Automate The Planet Ltd. 2025</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/automate-the-planet/testimize</PackageProjectUrl>
<RepositoryUrl>https://github.com/automate-the-planet/testimize</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>
testimize; test-data-generation; tdd; test-automation; boundary-value-analysis; abc-algorithm; pairwise; csharp; dotnet; nunit
</PackageTags>
<Description>Testimize is a smart and scalable test data generation engine for .NET. It supports boundary value analysis, pairwise testing, and heuristic optimization via the Artificial Bee Colony (ABC) algorithm. Designed for CI/CD, exploratory testing, and validation scenarios.</Description>
<PackageReleaseNotes>
- Introduced Precise Mode for full test input control
- Added Pairwise Mode for lightweight coverage
- Added ABC Heuristic Generator for exploratory testing
- Integrated NUnit output generators (TestCase, TestCaseSource)
- Config-driven generation via JSON
- Faker-based localized values support
- 20+ supported input types
- Optimized for TDD and CI pipelines
- .NET 8 Support
</PackageReleaseNotes>
</PropertyGroup>
</Project>