-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathSamples.BuggyBits.csproj
More file actions
18 lines (15 loc) · 1.11 KB
/
Samples.BuggyBits.csproj
File metadata and controls
18 lines (15 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">netcoreapp3.1;net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT' And '$([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture)' != 'Arm64'">netcoreapp3.1;net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT' And '$([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture)' == 'Arm64'">net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
<Platforms>AnyCPU;x64;x86</Platforms>
<!--This is required for smoke test assembly discovery-->
<AssemblyName>Samples.BuggyBits</AssemblyName>
<!-- This is required to avoid compilation error (duplicated). This has been done for test. See Program.cs for more info.-->
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Shared\Util\Datadog.Demos.Util.csproj" />
</ItemGroup>
</Project>