forked from UbiquityDotNET/Ubiquity.NET.Versioning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssemblyInfo.cs
More file actions
36 lines (28 loc) · 1.64 KB
/
AssemblyInfo.cs
File metadata and controls
36 lines (28 loc) · 1.64 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
// -----------------------------------------------------------------------
// <copyright file="AssemblyInfo.cs" company="Ubiquity.NET Contributors">
// Copyright (c) Ubiquity.NET Contributors. All rights reserved.
// </copyright>
// -----------------------------------------------------------------------
using System;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
using Microsoft.VisualStudio.TestTools.UnitTesting;
// In SDK-style projects such as this one, several assembly attributes that were historically
// defined in this file are now automatically added during build and populated with
// values defined in project properties. For details of which attributes are included
// and how to customize this process see: https://aka.ms/assembly-info-properties
// Setting ComVisible to false makes the types in this assembly not visible to COM
// components. If you need to access a type in this assembly from COM, set the ComVisible
// attribute to true on that type.
[assembly: ComVisible( false )]
// The following GUID is for the ID of the typelib if this project is exposed to COM.
[assembly: Guid( "cc26a3f0-0cb7-483f-b042-55dee985bfeb" )]
[assembly: CLSCompliant( false )]
[assembly: ExcludeFromCodeCoverage]
// Resolve MSTEST001 - explicitly declare parallelization
// There are enough tests at the method level to warrant some
// level of parallelization. However, the class level is the
// optimal granularity for these tests. The method level ends
// up with more overhead per thread since the test methods are
// so small, diminishing the value of parallelization.
[assembly: Parallelize( Scope = ExecutionScope.ClassLevel )]