PkgInst
21 строка · 550.0 Байт
1<Project Sdk="Microsoft.NET.Sdk">2
3<PropertyGroup>4<OutputType>Exe</OutputType>5<TargetFramework>net6.0</TargetFramework>6<ImplicitUsings>enable</ImplicitUsings>7<Nullable>enable</Nullable>8</PropertyGroup>9
10<ItemGroup>11<PackageReference Include="BenchmarkDotNet" Version="0.13.10" />12</ItemGroup>13
14<ItemGroup>15<ContentWithTargetPath Include="..\..\deps\win-x64\7za.exe">16<CopyToOutputDirectory>Always</CopyToOutputDirectory>17<TargetPath>7za.exe</TargetPath>18</ContentWithTargetPath>19</ItemGroup>20
21</Project>22