Skip to content

Commit f7f64cc

Browse files
authoredJan 28, 2022
Fix included NuGet.targets for external consumers (#465)
1 parent 328cdf9 commit f7f64cc

File tree

33 files changed

+60
-101
lines changed

33 files changed

+60
-101
lines changed
 

‎Directory.Build.props

-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

9-
<Import Project="$(MSBuildThisFileDirectory)\CodeStyles.targets" />
10-
119
</Project>

‎Directory.Build.targets

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
4+
<!-- Add to all projects -->
5+
<Import Project="$(MSBuildThisFileDirectory)\_CodeStyles.targets" />
6+
7+
<!-- Add to NuGet related projects (exclude Playgrounds and Tests) -->
8+
<ImportGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch($(ProjectName), 'Softeq.XToolkit.(.*)(?&lt;!Tests)$'))">
9+
<Import Project="$(MSBuildThisFileDirectory)\_NuGet.targets" />
10+
</ImportGroup>
11+
12+
</Project>

‎Softeq.XToolkit.Bindings.Droid/Softeq.XToolkit.Bindings.Droid.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,5 @@
7878
<Name>Softeq.XToolkit.Common</Name>
7979
</ProjectReference>
8080
</ItemGroup>
81-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
8281
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
8382
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.0</TargetFramework>
5-
<Nullable>disable</Nullable>
6-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.0</TargetFramework>
5+
<Nullable>disable</Nullable>
6+
</PropertyGroup>
77

8-
<Import Project="..\Tests.Shared.props" />
8+
<ItemGroup>
9+
<ProjectReference Include="..\Softeq.XToolkit.Bindings\Softeq.XToolkit.Bindings.csproj" />
10+
</ItemGroup>
911

10-
<ItemGroup>
11-
<ProjectReference Include="..\Softeq.XToolkit.Bindings\Softeq.XToolkit.Bindings.csproj" />
12-
</ItemGroup>
12+
<Import Project="..\_Tests.targets" />
1313

1414
</Project>

‎Softeq.XToolkit.Bindings.iOS/Softeq.XToolkit.Bindings.iOS.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<ConsolePause>false</ConsolePause>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>full</DebugType>
26+
<DebugType>pdbonly</DebugType>
2727
<Optimize>true</Optimize>
2828
<OutputPath>bin\Release</OutputPath>
2929
<ErrorReport>prompt</ErrorReport>
@@ -78,6 +78,5 @@
7878
<Name>Softeq.XToolkit.Common.iOS</Name>
7979
</ProjectReference>
8080
</ItemGroup>
81-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
8281
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
8382
</Project>

‎Softeq.XToolkit.Bindings/Softeq.XToolkit.Bindings.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,4 @@
88
<ProjectReference Include="..\Softeq.XToolkit.Common\Softeq.XToolkit.Common.csproj" />
99
</ItemGroup>
1010

11-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
12-
1311
</Project>

‎Softeq.XToolkit.Common.Droid.Tests/Softeq.XToolkit.Common.Droid.Tests.csproj

+2-16
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,7 @@
8787
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher.png" />
8888
</ItemGroup>
8989
<ItemGroup>
90-
<PackageReference Include="xunit">
91-
<Version>2.4.1</Version>
92-
</PackageReference>
93-
<PackageReference Include="xunit.runner.devices">
94-
<Version>2.5.25</Version>
95-
</PackageReference>
96-
<PackageReference Include="Xunit.Combinatorial">
97-
<Version>1.4.1</Version>
98-
</PackageReference>
90+
<PackageReference Include="Xunit.Combinatorial" Version="1.4.1" />
9991
</ItemGroup>
10092
<ItemGroup>
10193
<ProjectReference Include="..\Softeq.XToolkit.Common.Droid\Softeq.XToolkit.Common.Droid.csproj">
@@ -107,12 +99,6 @@
10799
<Name>Softeq.XToolkit.Common</Name>
108100
</ProjectReference>
109101
</ItemGroup>
102+
<Import Project="..\_Tests.Platform.targets" />
110103
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
111-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
112-
Other similar extension points exist, see Microsoft.Common.targets.
113-
<Target Name="BeforeBuild">
114-
</Target>
115-
<Target Name="AfterBuild">
116-
</Target>
117-
-->
118104
</Project>

‎Softeq.XToolkit.Common.Droid/Softeq.XToolkit.Common.Droid.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,5 @@
5858
<Name>Softeq.XToolkit.Common</Name>
5959
</ProjectReference>
6060
</ItemGroup>
61-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
6261
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
6362
</Project>

‎Softeq.XToolkit.Common.Tests/Softeq.XToolkit.Common.Tests.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
<Nullable>disable</Nullable>
66
</PropertyGroup>
77

8-
<Import Project="..\Tests.Shared.props" />
9-
108
<ItemGroup>
119
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="13.2.47" />
1210
</ItemGroup>
1311

1412
<ItemGroup>
1513
<ProjectReference Include="..\Softeq.XToolkit.Common\Softeq.XToolkit.Common.csproj" />
1614
</ItemGroup>
15+
16+
<Import Project="..\_Tests.targets" />
17+
1718
</Project>

‎Softeq.XToolkit.Common.iOS.Tests/Softeq.XToolkit.Common.iOS.Tests.csproj

+1-8
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,6 @@
117117
<Compile Include="TextFilters\GroupFilterTests\MockTextFilter.cs" />
118118
<Compile Include="TextFilters\LengthFilterTests\LengthFilterTests.cs" />
119119
</ItemGroup>
120-
<ItemGroup>
121-
<PackageReference Include="xunit">
122-
<Version>2.4.1</Version>
123-
</PackageReference>
124-
<PackageReference Include="xunit.runner.devices">
125-
<Version>2.5.25</Version>
126-
</PackageReference>
127-
</ItemGroup>
128120
<ItemGroup>
129121
<ProjectReference Include="..\Softeq.XToolkit.Common\Softeq.XToolkit.Common.csproj">
130122
<Project>{24588814-B93D-4528-8917-9C2A3C4E85CA}</Project>
@@ -135,5 +127,6 @@
135127
<Name>Softeq.XToolkit.Common.iOS</Name>
136128
</ProjectReference>
137129
</ItemGroup>
130+
<Import Project="..\_Tests.Platform.targets" />
138131
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
139132
</Project>

‎Softeq.XToolkit.Common.iOS/Softeq.XToolkit.Common.iOS.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<ConsolePause>false</ConsolePause>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>full</DebugType>
26+
<DebugType>pdbonly</DebugType>
2727
<Optimize>true</Optimize>
2828
<OutputPath>bin\Release</OutputPath>
2929
<ErrorReport>prompt</ErrorReport>
@@ -59,6 +59,5 @@
5959
<Name>Softeq.XToolkit.Common</Name>
6060
</ProjectReference>
6161
</ItemGroup>
62-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
6362
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
6463
</Project>

‎Softeq.XToolkit.Common/Softeq.XToolkit.Common.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,4 @@
55
<TargetFramework>netstandard2.1</TargetFramework>
66
</PropertyGroup>
77

8-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
9-
108
</Project>

‎Softeq.XToolkit.Connectivity.iOS/Softeq.XToolkit.Connectivity.iOS.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<WarningLevel>4</WarningLevel>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27-
<DebugType>full</DebugType>
27+
<DebugType>pdbonly</DebugType>
2828
<Optimize>true</Optimize>
2929
<OutputPath>bin\Release</OutputPath>
3030
<ErrorReport>prompt</ErrorReport>

‎Softeq.XToolkit.Permissions.Droid/Softeq.XToolkit.Permissions.Droid.csproj

-6
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,11 @@
2727
</JavaMaximumHeapSize>
2828
</PropertyGroup>
2929
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30-
<DebugSymbols>true</DebugSymbols>
3130
<DebugType>pdbonly</DebugType>
3231
<Optimize>true</Optimize>
3332
<OutputPath>bin\Release</OutputPath>
3433
<ErrorReport>prompt</ErrorReport>
3534
<WarningLevel>4</WarningLevel>
36-
<AndroidManagedSymbols>true</AndroidManagedSymbols>
37-
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
38-
<JavaMaximumHeapSize>
39-
</JavaMaximumHeapSize>
4035
</PropertyGroup>
4136
<ItemGroup>
4237
<Reference Include="System" />
@@ -63,6 +58,5 @@
6358
<Name>Softeq.XToolkit.Permissions</Name>
6459
</ProjectReference>
6560
</ItemGroup>
66-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
6761
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
6862
</Project>

‎Softeq.XToolkit.Permissions.iOS/Softeq.XToolkit.Permissions.iOS.csproj

+4-20
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProductVersion>8.0.30703</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
68
<ProjectGuid>{7EB2ADA9-C599-4644-AC6B-109F1AEED19F}</ProjectGuid>
79
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
810
<OutputType>Library</OutputType>
@@ -18,32 +20,15 @@
1820
<DefineConstants>DEBUG;</DefineConstants>
1921
<ErrorReport>prompt</ErrorReport>
2022
<WarningLevel>4</WarningLevel>
21-
<CodesignKey>iPhone Developer</CodesignKey>
22-
<MtouchDebug>true</MtouchDebug>
23-
<MtouchNoSymbolStrip>true</MtouchNoSymbolStrip>
24-
<MtouchFastDev>true</MtouchFastDev>
25-
<IOSDebuggerPort>47697</IOSDebuggerPort>
26-
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
27-
<DeviceSpecificBuild>false</DeviceSpecificBuild>
28-
<MtouchVerbosity>
29-
</MtouchVerbosity>
30-
<MtouchLink>
31-
</MtouchLink>
23+
<ConsolePause>false</ConsolePause>
3224
</PropertyGroup>
3325
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3426
<DebugType>pdbonly</DebugType>
3527
<Optimize>true</Optimize>
3628
<OutputPath>bin\Release</OutputPath>
37-
<DefineConstants>
38-
</DefineConstants>
3929
<ErrorReport>prompt</ErrorReport>
4030
<WarningLevel>4</WarningLevel>
41-
<CodesignKey>iPhone Developer</CodesignKey>
42-
<MtouchNoSymbolStrip>true</MtouchNoSymbolStrip>
43-
<MtouchLink>SdkOnly</MtouchLink>
44-
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
45-
<MtouchVerbosity>
46-
</MtouchVerbosity>
31+
<ConsolePause>false</ConsolePause>
4732
</PropertyGroup>
4833
<ItemGroup>
4934
<Reference Include="System" />
@@ -65,6 +50,5 @@
6550
<Name>Softeq.XToolkit.Permissions</Name>
6651
</ProjectReference>
6752
</ItemGroup>
68-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
6953
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
7054
</Project>

‎Softeq.XToolkit.Permissions/Softeq.XToolkit.Permissions.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,4 @@
88
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />
99
</ItemGroup>
1010

11-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
12-
1311
</Project>

‎Softeq.XToolkit.PushNotifications.Droid/Softeq.XToolkit.PushNotifications.Droid.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<WarningLevel>4</WarningLevel>
2828
</PropertyGroup>
2929
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30-
<DebugType>portable</DebugType>
30+
<DebugType>pdbonly</DebugType>
3131
<Optimize>true</Optimize>
3232
<OutputPath>bin\Release\</OutputPath>
3333
<DefineConstants>TRACE</DefineConstants>
@@ -72,6 +72,5 @@
7272
<Name>Softeq.XToolkit.Common</Name>
7373
</ProjectReference>
7474
</ItemGroup>
75-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
7675
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
7776
</Project>

‎Softeq.XToolkit.PushNotifications.iOS/Softeq.XToolkit.PushNotifications.iOS.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<ConsolePause>false</ConsolePause>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27-
<DebugType>full</DebugType>
27+
<DebugType>pdbonly</DebugType>
2828
<Optimize>true</Optimize>
2929
<OutputPath>bin\Release</OutputPath>
3030
<ErrorReport>prompt</ErrorReport>
@@ -59,6 +59,5 @@
5959
<Name>Softeq.XToolkit.Common</Name>
6060
</ProjectReference>
6161
</ItemGroup>
62-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
6362
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
6463
</Project>

‎Softeq.XToolkit.PushNotifications/Softeq.XToolkit.PushNotifications.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,4 @@
88
<ProjectReference Include="..\Softeq.XToolkit.Common\Softeq.XToolkit.Common.csproj" />
99
</ItemGroup>
1010

11-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
12-
1311
</Project>

‎Softeq.XToolkit.Remote.Tests/Softeq.XToolkit.Remote.Tests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<TargetFramework>netcoreapp3.0</TargetFramework>
55
</PropertyGroup>
66

7-
<Import Project="..\Tests.Shared.props" />
8-
97
<ItemGroup>
108
<ProjectReference Include="..\Softeq.XToolkit.Remote\Softeq.XToolkit.Remote.csproj" />
119
</ItemGroup>
1210

11+
<Import Project="..\_Tests.targets" />
12+
1313
</Project>

‎Softeq.XToolkit.Remote/Softeq.XToolkit.Remote.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,4 @@
1313
<ProjectReference Include="..\Softeq.XToolkit.Common\Softeq.XToolkit.Common.csproj" />
1414
</ItemGroup>
1515

16-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
17-
1816
</Project>

‎Softeq.XToolkit.WhiteLabel.Droid/Softeq.XToolkit.WhiteLabel.Droid.csproj

-3
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
<DefineConstants>TRACE</DefineConstants>
3333
<ErrorReport>prompt</ErrorReport>
3434
<WarningLevel>4</WarningLevel>
35-
<AndroidSigningKeyPass>
36-
</AndroidSigningKeyPass>
3735
</PropertyGroup>
3836
<ItemGroup>
3937
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />
@@ -142,6 +140,5 @@
142140
<AndroidResource Include="Resources\layout\control_notification_badge.xml" />
143141
<AndroidResource Include="Resources\drawable\core_badge_background.xml" />
144142
</ItemGroup>
145-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
146143
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
147144
</Project>

‎Softeq.XToolkit.WhiteLabel.Essentials.Droid/Softeq.XToolkit.WhiteLabel.Essentials.Droid.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,5 @@
8888
<ItemGroup>
8989
<PackageReference Include="Xamarin.FFImageLoading" Version="2.4.11.982" />
9090
</ItemGroup>
91-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
9291
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
9392
</Project>

‎Softeq.XToolkit.WhiteLabel.Essentials.iOS/Softeq.XToolkit.WhiteLabel.Essentials.iOS.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<ConsolePause>false</ConsolePause>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>full</DebugType>
26+
<DebugType>pdbonly</DebugType>
2727
<Optimize>true</Optimize>
2828
<OutputPath>bin\Release</OutputPath>
2929
<ErrorReport>prompt</ErrorReport>
@@ -85,6 +85,5 @@
8585
<ItemGroup>
8686
<InterfaceDefinition Include="FullScreenImage\FullScreenImageStoryboard.storyboard" />
8787
</ItemGroup>
88-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
8988
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
9089
</Project>

‎Softeq.XToolkit.WhiteLabel.Essentials/Softeq.XToolkit.WhiteLabel.Essentials.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@
99
<ProjectReference Include="..\Softeq.XToolkit.WhiteLabel\Softeq.XToolkit.WhiteLabel.csproj" />
1010
</ItemGroup>
1111

12-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
13-
1412
</Project>

‎Softeq.XToolkit.WhiteLabel.Forms/Softeq.XToolkit.WhiteLabel.Forms.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,4 @@
1212
<ProjectReference Include="..\Softeq.XToolkit.WhiteLabel\Softeq.XToolkit.WhiteLabel.csproj" />
1313
</ItemGroup>
1414

15-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
16-
1715
</Project>

‎Softeq.XToolkit.WhiteLabel.Tests/Softeq.XToolkit.WhiteLabel.Tests.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Nullable>disable</Nullable>
66
</PropertyGroup>
77

8-
<Import Project="..\Tests.Shared.props" />
8+
<Import Project="..\_Tests.targets" />
99

1010
<ItemGroup>
1111
<PackageReference Include="Xunit.Combinatorial" Version="1.4.1" />
@@ -14,4 +14,5 @@
1414
<ItemGroup>
1515
<ProjectReference Include="..\Softeq.XToolkit.WhiteLabel\Softeq.XToolkit.WhiteLabel.csproj" />
1616
</ItemGroup>
17+
1718
</Project>

‎Softeq.XToolkit.WhiteLabel.iOS/Softeq.XToolkit.WhiteLabel.iOS.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<ConsolePause>false</ConsolePause>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>full</DebugType>
26+
<DebugType>pdbonly</DebugType>
2727
<Optimize>true</Optimize>
2828
<OutputPath>bin\Release</OutputPath>
2929
<ErrorReport>prompt</ErrorReport>
@@ -108,6 +108,5 @@
108108
<Name>Softeq.XToolkit.Common.iOS</Name>
109109
</ProjectReference>
110110
</ItemGroup>
111-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
112111
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
113112
</Project>

‎Softeq.XToolkit.WhiteLabel/Softeq.XToolkit.WhiteLabel.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@
1414
<ProjectReference Include="..\Softeq.XToolkit.Common\Softeq.XToolkit.Common.csproj" />
1515
</ItemGroup>
1616

17-
<Import Project="$(MSBuildThisFileDirectory)..\NuGet.targets" />
18-
1917
</Project>
File renamed without changes.

‎NuGet.targets ‎_NuGet.targets

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33

4+
<!-- Declare Symbol package -->
45
<PropertyGroup>
5-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<IncludeSource>true</IncludeSource>
77
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
88
<PublishRepositoryUrl>true</PublishRepositoryUrl>
99
<EmbedUntrackedSources>true</EmbedUntrackedSources>
1010
</PropertyGroup>
1111

12+
<!-- Create XML documentation -->
13+
<PropertyGroup>
14+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
15+
<DocumentationFile Condition="'$(TargetFramework)' != 'netstandard2.1'">bin\Release\$(ProjectName).xml</DocumentationFile>
16+
<DocumentationFile Condition="'$(TargetFramework)' == 'netstandard2.1'">bin\Release\netstandard2.1\$(ProjectName).xml</DocumentationFile>
17+
</PropertyGroup>
18+
1219
<!-- Define Deterministic builds property for Azure Pipelines -->
1320
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
1421
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>

‎_Tests.Platform.targets

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project>
3+
4+
<ItemGroup>
5+
<PackageReference Include="xunit" Version="2.4.1" />
6+
<PackageReference Include="xunit.runner.devices" Version="2.5.25" />
7+
</ItemGroup>
8+
9+
</Project>

‎Tests.Shared.props ‎_Tests.targets

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project>
3+
34
<ItemGroup>
45
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
56
<PackageReference Include="xunit" Version="2.4.1" />
@@ -13,4 +14,5 @@
1314
</PackageReference>
1415
<PackageReference Include="NSubstitute" Version="4.2.2" />
1516
</ItemGroup>
17+
1618
</Project>

0 commit comments

Comments
 (0)
Please sign in to comment.