-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathEsdkBenchmark.csproj
More file actions
64 lines (51 loc) · 2.39 KB
/
EsdkBenchmark.csproj
File metadata and controls
64 lines (51 loc) · 2.39 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>13.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>EsdkBenchmark</AssemblyName>
<RootNamespace>Amazon.Esdk.Benchmark</RootNamespace>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<AssemblyTitle>ESDK .NET Performance Benchmark</AssemblyTitle>
<AssemblyDescription>Performance benchmark suite for AWS Encryption SDK .NET runtime</AssemblyDescription>
<AssemblyCompany>Amazon Web Services</AssemblyCompany>
<AssemblyProduct>AWS Encryption SDK</AssemblyProduct>
<Copyright>Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.</Copyright>
<Version>1.0.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<Optimize>true</Optimize>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<!-- ESDK and Material Providers -->
<ProjectReference Include="../../../AwsEncryptionSDK/runtimes/net/ESDK.csproj" />
<!-- Command line parsing -->
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<!-- Configuration and serialization -->
<PackageReference Include="YamlDotNet" Version="13.7.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<!-- Progress reporting -->
<PackageReference Include="ShellProgressBar" Version="5.2.0" />
<!-- System information -->
<PackageReference Include="System.Management" Version="6.0.0" />
<!-- Memory profiling -->
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="6.0.0" />
<!-- Logging -->
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
<!-- Statistics -->
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
<!-- Async utilities -->
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
</ItemGroup>
<ItemGroup>
<None Include="../../config/test-scenarios.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>