Skip to content

Commit

Permalink
transition to apidoctor
Browse files Browse the repository at this point in the history
- rename to apidoctor
- support full-fidelity edmx generation
- support warning/error suppression
- support link validation in xml files
  • Loading branch information
daspek committed Jun 8, 2018
1 parent 8bf0852 commit 0aa04ab
Show file tree
Hide file tree
Showing 205 changed files with 6,431 additions and 2,861 deletions.
826 changes: 0 additions & 826 deletions ApiDocs.Publishing/CSDL/CsdlWriter.cs

This file was deleted.

115 changes: 0 additions & 115 deletions ApiDocs.Validation/OData/IODataNavigable.cs

This file was deleted.

136 changes: 0 additions & 136 deletions ApiDocs.Validation/ParameterDefinition.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ProjectGuid>{A6F3993F-59C6-4985-ACF1-4D837D61E98F}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ApiDocs.ConsoleApp</RootNamespace>
<AssemblyName>apidocs</AssemblyName>
<RootNamespace>ApiDoctor.ConsoleApp</RootNamespace>
<AssemblyName>apidoc</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
Expand Down Expand Up @@ -38,7 +38,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Commandlineparameters>check-docs --path /Users/ryan/SourceCode/github/onedrive-api-docs-internal --method get-previous-versions</Commandlineparameters>
<Commandlineparameters>check-docs --path /Users/dspektor/src/graphdocs2</Commandlineparameters>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
Expand Down Expand Up @@ -92,17 +92,17 @@
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ApiDocs.DocumentationGeneration\ApiDocs.DocumentationGeneration.csproj">
<ProjectReference Include="..\ApiDoctor.DocumentationGeneration\ApiDoctor.DocumentationGeneration.csproj">
<Project>{cd27998c-4021-4299-970b-91be877fd01b}</Project>
<Name>ApiDocs.DocumentationGeneration</Name>
<Name>ApiDoctor.DocumentationGeneration</Name>
</ProjectReference>
<ProjectReference Include="..\ApiDocs.Publishing\ApiDocs.Publishing.csproj">
<ProjectReference Include="..\ApiDoctor.Publishing\ApiDoctor.Publishing.csproj">
<Project>{B675CF73-AA42-4A54-B5E7-FF5F155DA4A7}</Project>
<Name>ApiDocs.Publishing</Name>
<Name>ApiDoctor.Publishing</Name>
</ProjectReference>
<ProjectReference Include="..\ApiDocs.Validation\ApiDocs.Validation.csproj">
<ProjectReference Include="..\ApiDoctor.Validation\ApiDoctor.Validation.csproj">
<Project>{33B10320-3802-49CF-8965-3510AE66D5EC}</Project>
<Name>ApiDocs.Validation</Name>
<Name>ApiDoctor.Validation</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<package >
<metadata>
<id>MarkdownScanner.BinaryTools</id>
<id>ApiDoctor</id>
<version>$version$</version>
<authors>Ryan Gregg</authors>
<owners>rgregg@microsoft.com</owners>
<authors>Microsoft</authors>
<owners>dspektor@microsoft.com</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Toolkit that enables validation of API documentation</description>
<releaseNotes>Check http://github.com/onedrive/markdown-scanner for details.</releaseNotes>
<description>Tool for validating API documentation</description>
<releaseNotes>Check http://github.com/onedrive/apidoctor for details.</releaseNotes>
<copyright>Copyright Microsoft</copyright>
<licenseUrl>http://msdn.microsoft.com/en-US/cc300389</licenseUrl>
<projectUrl>http://github.com/onedrive/apidoctor</projectUrl>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework="net45" />
</frameworkAssemblies>
</metadata>
<files>
<file src="bin\Release\apidocs.exe" target="tools" />
<file src="bin\Release\apidoc.exe" target="tools" />
<file src="bin\Release\*.dll" target="tools" />
</files>
</package>
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Markdown Scanner
* API Doctor
* Copyright (c) Microsoft Corporation
* All rights reserved.
*
Expand All @@ -23,12 +23,12 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

namespace ApiDocs.ConsoleApp
namespace ApiDoctor.ConsoleApp
{
using ApiDocs.ConsoleApp.Auth;
using ApiDocs.Validation.Config;
using ApiDoctor.ConsoleApp.Auth;
using ApiDoctor.Validation.Config;
using Newtonsoft.Json;
using ApiDocs.Validation;
using ApiDoctor.Validation;

public class AppConfigFile : ConfigFile
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Markdown Scanner
* API Doctor
* Copyright (c) Microsoft Corporation
* All rights reserved.
*
Expand All @@ -23,7 +23,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

namespace ApiDocs.ConsoleApp.AppVeyor
namespace ApiDoctor.ConsoleApp.AppVeyor
{
using System;
using System.IO;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Markdown Scanner
* API Doctor
* Copyright (c) Microsoft Corporation
* All rights reserved.
*
Expand All @@ -23,11 +23,11 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

namespace ApiDocs.ConsoleApp.Auth
namespace ApiDoctor.ConsoleApp.Auth
{
using System.Threading.Tasks;
using System.Collections.Generic;
using ApiDocs.Validation;
using ApiDoctor.Validation;

public class BasicAccount : IServiceAccount
{
Expand Down
Loading

0 comments on commit 0aa04ab

Please sign in to comment.