Skip to content

Commit 8519eeb

Browse files
committed
ci: update headers
1 parent 676f2ab commit 8519eeb

283 files changed

Lines changed: 4353 additions & 4180 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

build/header.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ******************************************************************
2-
// Copyright � 2015-2018 nventive inc. All rights reserved.
2+
// Copyright � 2015-2020 nventive inc. All rights reserved.
33
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.
@@ -13,4 +13,4 @@
1313
// See the License for the specific language governing permissions and
1414
// limitations under the License.
1515
//
16-
// ******************************************************************
16+
// ******************************************************************
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
2+
<PropertyGroup>
3+
<TargetFrameworks>net46</TargetFrameworks>
4+
<Product>$(AssemblyName) ($(TargetFramework))</Product>
5+
<NoWarn>$(NoWarn);1998;1591;1573;1572;1574;1712;1711;1570;NU5128;NU5105</NoWarn>
6+
<Description></Description>
7+
<BuildForLiveUnitTesting>false</BuildForLiveUnitTesting>
8+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
9+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
10+
<TreatSpecificWarningsAsErrors />
11+
<DebugType>full</DebugType>
12+
<DebugSymbols>True</DebugSymbols>
13+
<IncludeBuildOutput>false</IncludeBuildOutput>
14+
</PropertyGroup>
15+
16+
<PropertyGroup>
17+
<Authors>nventive</Authors>
18+
<PackageProjectUrl>https://github.com/nventive/Uno.Core</PackageProjectUrl>
19+
<PackageIconUrl>https://nv-assets.azurewebsites.net/logos/uno.png</PackageIconUrl>
20+
<RepositoryUrl>https://github.com/nventive/Uno.Core</RepositoryUrl>
21+
<Description>A package that includes Uno.Core as a dependency for build tasks and Uno.SourceGeneration binaries.</Description>
22+
<Copyright>Copyright (C) 2015-2020 nventive inc. - all rights reserved</Copyright>
23+
</PropertyGroup>
24+
25+
<ItemGroup>
26+
<None Remove="build\Uno.Core.Build.targets" />
27+
</ItemGroup>
28+
29+
<ItemGroup>
30+
<Content Include="..\Uno.Core\bin\$(Configuration)\net46\Uno.Core.dll">
31+
<Pack>true</Pack>
32+
<PackagePath>build</PackagePath>
33+
</Content>
34+
<Content Include="..\Uno.Core\bin\$(Configuration)\net46\Microsoft.Extensions.*.dll">
35+
<Pack>true</Pack>
36+
<PackagePath>build</PackagePath>
37+
</Content>
38+
<Content Include="..\Uno.Core\bin\$(Configuration)\net46\CommonServiceLocator.dll">
39+
<Pack>true</Pack>
40+
<PackagePath>build</PackagePath>
41+
</Content>
42+
<Content Include="build\Uno.Core.Build.targets">
43+
<Pack>true</Pack>
44+
<PackagePath>build</PackagePath>
45+
</Content>
46+
</ItemGroup>
47+
48+
<ItemGroup>
49+
<PackageReference Include="Microsoft.Build">
50+
<Version>15.1.1012</Version>
51+
<ExcludeAssets>runtime</ExcludeAssets>
52+
<PrivateAssets>all</PrivateAssets>
53+
</PackageReference>
54+
<PackageReference Include="Microsoft.Build.Framework">
55+
<Version>15.1.1012</Version>
56+
<ExcludeAssets>runtime</ExcludeAssets>
57+
<PrivateAssets>all</PrivateAssets>
58+
</PackageReference>
59+
<PackageReference Include="Microsoft.Build.Tasks.Core">
60+
<Version>15.1.1012</Version>
61+
<ExcludeAssets>runtime</ExcludeAssets>
62+
<PrivateAssets>all</PrivateAssets>
63+
</PackageReference>
64+
<PackageReference Include="Microsoft.Build.Utilities.Core">
65+
<Version>15.1.1012</Version>
66+
<ExcludeAssets>runtime</ExcludeAssets>
67+
<PrivateAssets>all</PrivateAssets>
68+
</PackageReference>
69+
<PackageReference Include="Uno.MonoAnalyzers" Version="1.0.0-dev.4">
70+
<PrivateAssets>all</PrivateAssets>
71+
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
72+
</PackageReference>
73+
</ItemGroup>
74+
75+
<Target Name="Publish" />
76+
77+
<Target Name="BuildManualDependencies" BeforeTargets="Build">
78+
<!--
79+
This is required because the non-reference dependencies are not properly handled
80+
see: https://developercommunity.visualstudio.com/content/problem/90538/a-cross-targeted-project-incorrectly-treats-soluti.html
81+
-->
82+
<MSBuild Properties="Configuration=$(Configuration);Platform=AnyCPU" Targets="Build" Projects="..\Uno.Core\Uno.Core.csproj" RebaseOutputs="false" />
83+
</Target>
84+
85+
</Project>

src/Uno.Core.Build/Uno.Core.Build.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PackageIconUrl>https://nv-assets.azurewebsites.net/logos/uno.png</PackageIconUrl>
2020
<RepositoryUrl>https://github.com/nventive/Uno.Core</RepositoryUrl>
2121
<Description>A package that includes Uno.Core as a dependency for build tasks and Uno.SourceGeneration binaries.</Description>
22-
<Copyright>Copyright (C) 2015-2018 nventive inc. - all rights reserved</Copyright>
22+
<Copyright>Copyright (C) 2015-2020 nventive inc. - all rights reserved</Copyright>
2323
</PropertyGroup>
2424

2525
<ItemGroup>

src/Uno.Core.Tests/Collections/ImmutableListFixture.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ******************************************************************
2-
// Copyright � 2015-2018 nventive inc. All rights reserved.
2+
// Copyright � 2015-2020 nventive inc. All rights reserved.
33
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.
@@ -14,6 +14,7 @@
1414
// limitations under the License.
1515
//
1616
// ******************************************************************
17+
1718
using System;
1819
using System.Linq;
1920
using FluentAssertions;

src/Uno.Core.Tests/Collections/ListExtensionsFixture.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ******************************************************************
2-
// Copyright � 2015-2018 nventive inc. All rights reserved.
2+
// Copyright � 2015-2020 nventive inc. All rights reserved.
33
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.
@@ -14,6 +14,7 @@
1414
// limitations under the License.
1515
//
1616
// ******************************************************************
17+
1718
using System;
1819
using System.Collections;
1920
using System.Collections.Generic;

src/Uno.Core.Tests/Collections/ObservableCollectionExtensionsFixture.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ******************************************************************
2-
// Copyright � 2015-2018 nventive inc. All rights reserved.
2+
// Copyright � 2015-2020 nventive inc. All rights reserved.
33
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.
@@ -14,6 +14,7 @@
1414
// limitations under the License.
1515
//
1616
// ******************************************************************
17+
1718
using System;
1819
using System.Linq;
1920
using Microsoft.VisualStudio.TestTools.UnitTesting;

src/Uno.Core.Tests/Collections/SpanExtensionsFixture.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ******************************************************************
2-
// Copyright � 2015-2018 nventive inc. All rights reserved.
2+
// Copyright � 2015-2020 nventive inc. All rights reserved.
33
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.
@@ -14,6 +14,7 @@
1414
// limitations under the License.
1515
//
1616
// ******************************************************************
17+
1718
using Microsoft.VisualStudio.TestTools.UnitTesting;
1819
using System;
1920
using System.Collections.Generic;
@@ -25,7 +26,7 @@
2526
namespace Uno.Core.Tests.Collections
2627
{
2728
[TestClass]
28-
public class SpanExtensionsFixture
29+
public class SpanExtensionsFixture
2930
{
3031
[TestMethod]
3132
public void When_SelectToSpan()

src/Uno.Core.Tests/Conversions/ConversionExtensionsFixture.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ******************************************************************
2-
// Copyright � 2015-2018 nventive inc. All rights reserved.
2+
// Copyright � 2015-2020 nventive inc. All rights reserved.
33
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.
@@ -14,6 +14,7 @@
1414
// limitations under the License.
1515
//
1616
// ******************************************************************
17+
1718
using System;
1819
using CommonServiceLocator;
1920
using Microsoft.VisualStudio.TestTools.UnitTesting;

src/Uno.Core.Tests/Conversions/CustomConversionStrategyFixture.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ******************************************************************
2-
// Copyright � 2015-2018 nventive inc. All rights reserved.
2+
// Copyright � 2015-2020 nventive inc. All rights reserved.
33
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.
@@ -14,6 +14,7 @@
1414
// limitations under the License.
1515
//
1616
// ******************************************************************
17+
1718
using System;
1819
using CommonServiceLocator;
1920
using Microsoft.VisualStudio.TestTools.UnitTesting;

src/Uno.Core.Tests/Conversions/DefaultConversionsExtensionsFixture.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ******************************************************************
2-
// Copyright � 2015-2018 nventive inc. All rights reserved.
2+
// Copyright � 2015-2020 nventive inc. All rights reserved.
33
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.
@@ -14,6 +14,7 @@
1414
// limitations under the License.
1515
//
1616
// ******************************************************************
17+
1718
using System;
1819
using System.Globalization;
1920
using CommonServiceLocator;

0 commit comments

Comments
 (0)