This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/Java.Interop/Java.Interop.csproj b/src/Java.Interop/Java.Interop.csproj | |
| index 43d5937e3..f93e38e6a 100644 | |
| --- a/src/Java.Interop/Java.Interop.csproj | |
| +++ b/src/Java.Interop/Java.Interop.csproj | |
| @@ -22,14 +22,15 @@ | |
| <Import Project="..\..\TargetFrameworkDependentValues.props" /> | |
| <PropertyGroup> | |
| <DefineConstants>INTEROP;FEATURE_JNIOBJECTREFERENCE_INTPTRS;INTERNAL_NULLABLE_ATTRIBUTES;$(JavaInteropDefineConstants)</DefineConstants> | |
| - <IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\$(TargetFramework.ToLowerInvariant())\</IntermediateOutputPath> | |
| - <OutputPath>$(ToolOutputFullPath)</OutputPath> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| interface IFruit { | |
| string Name {get;} | |
| } | |
| class Banana : IFruit { | |
| public string Name => "Banana"; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Metadata version: v4.0.30319 | |
| .assembly extern System.Runtime | |
| { | |
| .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) // .?_....: | |
| .ver 9:0:0:0 | |
| } | |
| .assembly extern System.Console | |
| { | |
| .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) // .?_....: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Metadata version: v4.0.30319 | |
| .assembly extern System.Runtime | |
| { | |
| .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) // .?_....: | |
| .ver 9:0:0:0 | |
| } | |
| .assembly extern System.Console | |
| { | |
| .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) // .?_....: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh -e | |
| TIMEFILE=`mktemp -t exec-notify` || exit 1 | |
| EXIT_CODE=0 | |
| /usr/bin/time -o "${TIMEFILE}" "$@" || EXIT_CODE=$? | |
| cat "${TIMEFILE}" | |
| echo exit=$EXIT_CODE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/Src/AwesomeAssertions/Equivalency/Steps/GenericEnumerableEquivalencyStep.cs b/Src/AwesomeAssertions/Equivalency/Steps/GenericEnumerableEquivalencyStep.cs | |
| index 5622fb62..2c1edd81 100644 | |
| --- a/Src/AwesomeAssertions/Equivalency/Steps/GenericEnumerableEquivalencyStep.cs | |
| +++ b/Src/AwesomeAssertions/Equivalency/Steps/GenericEnumerableEquivalencyStep.cs | |
| @@ -3,6 +3,7 @@ using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Reflection; | |
| +using System.Text; | |
| using AwesomeAssertions.Common; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/Xamarin.Android.Build.Tasks/Tasks/GetAndroidDefineConstants.cs b/src/Xamarin.Android.Build.Tasks/Tasks/GetAndroidDefineConstants.cs | |
| index 8699d0af0..f3bd8a40e 100644 | |
| --- a/src/Xamarin.Android.Build.Tasks/Tasks/GetAndroidDefineConstants.cs | |
| +++ b/src/Xamarin.Android.Build.Tasks/Tasks/GetAndroidDefineConstants.cs | |
| @@ -15,7 +15,7 @@ namespace Xamarin.Android.Tasks | |
| public override string TaskPrefix => "GAD"; | |
| [Required] | |
| - public int AndroidApiLevel { get; set; } | |
| + public string AndroidApiLevel { get; set; } = ""; |
OlderNewer