Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions cgmanifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,19 @@
},
"license": "The Apache Software License, Version 2.0"
},
{
"component": {
"type": "maven",
"maven": {
"artifactId": "annotation-jvm",
"groupId": "androidx.annotation",
"version": "1.6.0",
"nuGetId": "Xamarin.AndroidX.Annotation.Jvm",
"nuGetVersion": "1.6.0"
}
},
"license": "The Apache Software License, Version 2.0"
},
{
"component": {
"type": "maven",
Expand Down
8 changes: 8 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,14 @@
"nugetId": "Xamarin.AndroidX.Annotation",
"dependencyOnly": false
},
{
"groupId": "androidx.annotation",
"artifactId": "annotation-jvm",
"version": "1.6.0",
"nugetVersion": "1.6.0",
"nugetId": "Xamarin.AndroidX.Annotation.Jvm",
"dependencyOnly": false
},
{
"groupId": "androidx.annotation",
"artifactId": "annotation-experimental",
Expand Down
495 changes: 248 additions & 247 deletions docs/artifact-list.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"sdk":
{
"version": "6.0.403",
"version": "7.0.203",
"rollForward": "patch"
},
"msbuild-sdks":
{
"MSBuild.Sdk.Extras": "3.0.44",
"Microsoft.Build.Traversal": "3.2.0",
"Microsoft.Build.Traversal": "4.0.0",
"Microsoft.Build.NoTargets": "3.7.0",
"Xamarin.Legacy.Sdk": "0.2.0-alpha4"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ public Task MetadataIsAppendedToDependencies()
</Project>");
}

public async Task ProcessAndAssertTemplate(string input, BindingConfig config, string output, Dictionary<string, string> metadata = null)
internal async Task ProcessAndAssertTemplate(string input, BindingConfig config, string output, Dictionary<string, string> metadata = null)
{
var generated = Path.Combine(RootDirectory, "generated");
var outputFile = Path.Combine(generated, "Generated.csproj");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<PackAsTool>true</PackAsTool>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp3.1;net6.0;net5.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0;net7.0</TargetFrameworks>
<ToolCommandName>xamarin-android-binderator</ToolCommandName>
<AssemblyName>Xamarin.AndroidBinderator.Tool</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand All @@ -13,11 +13,11 @@

<PropertyGroup>
<PackageId>Xamarin.AndroidBinderator.Tool</PackageId>
<PackageVersion>0.5.4</PackageVersion>
<PackageVersion>0.5.5</PackageVersion>
<Title>Xamarin Android Binderator</Title>
<PackageDescription>A tool for generating Xamarin.Android Binding projects from Razor templates and Maven Repository data.</PackageDescription>
<PackageProjectUrl>https://go.microsoft.com/fwlink/?linkid=2100525</PackageProjectUrl>
<PackageLicenseUrl>https://go.microsoft.com/fwlink/?linkid=2100608</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>Microsoft</Authors>
<Owners>Microsoft</Owners>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<PropertyGroup>
<PackageVersion>2.3.4</PackageVersion>
<PackageVersion>2.3.5</PackageVersion>
<PackageId>Xamarin.AndroidBinderator</PackageId>
<Title>Xamarin.AndroidBinderator</Title>
<PackageDescription>An engine to generate Xamarin Binding projects from Maven repositories with a JSON config and razor templates.</PackageDescription>
Expand Down