|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <Version>0.1.0-beta.0</Version> |
5 | | - <OutputType>Exe</OutputType> |
| 4 | + <LangVersion>12.0</LangVersion> |
6 | 5 | <TargetFramework>net8.0</TargetFramework> |
| 6 | + <PackAsTool>true</PackAsTool> |
| 7 | + <OutputType>Exe</OutputType> |
7 | 8 | <ImplicitUsings>enable</ImplicitUsings> |
8 | 9 | <Nullable>enable</Nullable> |
9 | | - <PackAsTool>true</PackAsTool> |
10 | | - <ToolCommandName>nb-converter</ToolCommandName> |
| 10 | + <Company>NBomber</Company> |
| 11 | + <Version>0.1.0-beta.1</Version> |
| 12 | + <Copyright>NBomber@2025</Copyright> |
| 13 | + <IncludeSymbols>true</IncludeSymbols> |
| 14 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 15 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 16 | + <PackageIcon>nbomber_icon.png</PackageIcon> |
| 17 | + <RepositoryUrl>https://github.com/PragmaticFlow/NBomber.Converter</RepositoryUrl> |
| 18 | + <PackageTags>load-testing, performance-testing, integration-testing, fsharp</PackageTags> |
| 19 | + <GeneratePackageOnBuild>false</GeneratePackageOnBuild> |
| 20 | + <Description>The CLI tool for using NBomber.Converter</Description> |
| 21 | + <Title>NBomber.Converter.Tool</Title> |
| 22 | + <ToolCommandName>nb-converter</ToolCommandName> |
11 | 23 | </PropertyGroup> |
12 | 24 |
|
13 | 25 | <ItemGroup> |
|
20 | 32 | <ProjectReference Include="..\NBomber.Converter\NBomber.Converter.csproj" /> |
21 | 33 | </ItemGroup> |
22 | 34 |
|
| 35 | + <ItemGroup> |
| 36 | + <None Include="../../LICENSE" Pack="true" Visible="false" PackagePath="" /> |
| 37 | + <None Include="../../assets/nbomber_icon.png" Pack="true" Visible="false" PackagePath="" /> |
| 38 | + </ItemGroup> |
| 39 | + |
23 | 40 | </Project> |
0 commit comments