-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use Microsoft.CodeAnalysis.Diagnostics for error messages (#25)
- Loading branch information
Showing
53 changed files
with
1,123 additions
and
305 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageId>Azure.ApiManagement.PolicyToolkit.Compiling</PackageId> | ||
<PackageVersion>0.0.1</PackageVersion> | ||
<FileVersion>0.0.1</FileVersion> | ||
<AssemblyVersion>0.0.1</AssemblyVersion> | ||
<InformationalVersion>0.0.1</InformationalVersion> | ||
<Authors>Microsoft</Authors> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<PackageProjectUrl>https://github.com/Azure/azure-api-management-policy-toolkit</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/Azure/azure-api-management-policy-toolkit</RepositoryUrl> | ||
<Description> | ||
Azure API Management Policy Toolkit Compiling is a dotnet tool allowing you to transform policy document(s) from C# code to XML. | ||
Read more about it at https://github.com/Azure/azure-api-management-policy-toolkit | ||
</Description> | ||
<PackageTags>Azure;Azure API Management;API Gateway;API Management;Policy;Policies;Policy Toolkit;Compiling;Policy Toolkit Compiling</PackageTags> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>.net8</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
|
||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<PackAsTool>true</PackAsTool> | ||
<ToolCommandName>azure-apim-policy-compiler</ToolCommandName> | ||
<PackageOutputPath>..\..\output</PackageOutputPath> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="9.0.0"/> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Core\Core.csproj"/> | ||
</ItemGroup> | ||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageId>Azure.ApiManagement.PolicyToolkit.Compiling</PackageId> | ||
<PackageVersion>0.0.1</PackageVersion> | ||
<FileVersion>0.0.1</FileVersion> | ||
<AssemblyVersion>0.0.1</AssemblyVersion> | ||
<InformationalVersion>0.0.1</InformationalVersion> | ||
<Authors>Microsoft</Authors> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<PackageProjectUrl>https://github.com/Azure/azure-api-management-policy-toolkit</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/Azure/azure-api-management-policy-toolkit</RepositoryUrl> | ||
<Description> | ||
Azure API Management Policy Toolkit Compiling is a dotnet tool allowing you to transform policy document(s) from C# code to XML. | ||
Read more about it at https://github.com/Azure/azure-api-management-policy-toolkit | ||
</Description> | ||
<PackageTags>Azure;Azure API Management;API Gateway;API Management;Policy;Policies;Policy Toolkit;Compiling;Policy Toolkit Compiling</PackageTags> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>.net8</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
|
||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<PackAsTool>true</PackAsTool> | ||
<ToolCommandName>azure-apim-policy-compiler</ToolCommandName> | ||
<PackageOutputPath>..\..\output</PackageOutputPath> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="9.0.0"/> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Core\Core.csproj"/> | ||
</ItemGroup> | ||
</Project> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.