├── .github └── dependabot.yml ├── .gitignore ├── ClassLibrary2.zip ├── Dapper.Crud.SampleProject └── Dapper.Crud.SampleProject │ ├── Address.cs │ ├── Dapper.Crud.SampleProject.csproj │ ├── Dapper.Crud.SampleProject.sln │ └── User.cs ├── Dapper.Crud.Tests ├── Address.cs ├── Dapper.Crud.Tests.csproj ├── ModelTest.cs ├── Properties │ └── AssemblyInfo.cs ├── TestClass.cs ├── TestCode.cs ├── TestDelete.cs ├── TestInsert.cs ├── TestInterface.cs ├── TestMethod.cs ├── TestSelect.cs ├── TestUpdate.cs └── User.cs ├── Dapper.Crud.VSExtension.sln ├── Dapper.Crud.VSExtension ├── CreateCrud.cs ├── CreateCrudPackage.cs ├── CreateCrudPackage.vsct ├── Dapper.Crud.VSExtension.csproj ├── Helpers │ ├── AssemblyHelper.cs │ ├── ClassGenerator.cs │ ├── DapperGenerator.cs │ ├── FileHelper.cs │ ├── InterfaceGenerator.cs │ ├── MethodGenerator.cs │ ├── ModelHelper.cs │ └── ProjectHelper.cs ├── Key.snk ├── Logger │ └── Logger.cs ├── Properties │ └── AssemblyInfo.cs ├── ProvideToolboxControlAttribute.cs ├── Resources │ ├── ConfigureWindowCommand.png │ ├── CreateCrud.png │ ├── CreateCrudPackage.ico │ ├── Spinner.gif │ ├── loading.gif │ ├── settings.png │ └── settingsbig.png ├── VSPackage.Designer.cs ├── VSPackage.resx ├── app.config ├── dll │ ├── Dapper.Contrib.dll │ ├── Microsoft.AspNetCore.Mvc.dll │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ ├── ScintillaNET.dll │ ├── System.Web.Mvc.dll │ └── System.Web.Optimization.dll ├── frmExtension.Designer.cs ├── frmExtension.cs ├── frmExtension.resx ├── index.html ├── roslyn │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ ├── Microsoft.CSharp.Core.targets │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Scripting.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ ├── Microsoft.DiaSymReader.Native.x86.dll │ ├── Microsoft.Managed.Core.CurrentVersions.targets │ ├── Microsoft.Managed.Core.targets │ ├── Microsoft.VisualBasic.Core.targets │ ├── System.Buffers.dll │ ├── System.Collections.Immutable.dll │ ├── System.Memory.dll │ ├── System.Numerics.Vectors.dll │ ├── System.Reflection.Metadata.dll │ ├── System.Runtime.CompilerServices.Unsafe.dll │ ├── System.Text.Encoding.CodePages.dll │ ├── System.Threading.Tasks.Extensions.dll │ ├── VBCSCompiler.exe │ ├── VBCSCompiler.exe.config │ ├── cs │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── csc.exe │ ├── csc.exe.config │ ├── csc.rsp │ ├── csi.exe │ ├── csi.exe.config │ ├── csi.rsp │ ├── de │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── es │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── fr │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── it │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ja │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ko │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pl │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pt-BR │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ru │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── tr │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── vbc.exe │ ├── vbc.exe.config │ ├── vbc.rsp │ ├── zh-Hans │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ └── zh-Hant │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll ├── source.extension.vsixmanifest └── stylesheet.css ├── LICENSE ├── README.md └── dapper.gif /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/.gitignore -------------------------------------------------------------------------------- /ClassLibrary2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/ClassLibrary2.zip -------------------------------------------------------------------------------- /Dapper.Crud.SampleProject/Dapper.Crud.SampleProject/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.SampleProject/Dapper.Crud.SampleProject/Address.cs -------------------------------------------------------------------------------- /Dapper.Crud.SampleProject/Dapper.Crud.SampleProject/Dapper.Crud.SampleProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.SampleProject/Dapper.Crud.SampleProject/Dapper.Crud.SampleProject.csproj -------------------------------------------------------------------------------- /Dapper.Crud.SampleProject/Dapper.Crud.SampleProject/Dapper.Crud.SampleProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.SampleProject/Dapper.Crud.SampleProject/Dapper.Crud.SampleProject.sln -------------------------------------------------------------------------------- /Dapper.Crud.SampleProject/Dapper.Crud.SampleProject/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.SampleProject/Dapper.Crud.SampleProject/User.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/Address.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/Dapper.Crud.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/Dapper.Crud.Tests.csproj -------------------------------------------------------------------------------- /Dapper.Crud.Tests/ModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/ModelTest.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/TestClass.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/TestCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/TestCode.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/TestDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/TestDelete.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/TestInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/TestInsert.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/TestInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/TestInterface.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/TestMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/TestMethod.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/TestSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/TestSelect.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/TestUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/TestUpdate.cs -------------------------------------------------------------------------------- /Dapper.Crud.Tests/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.Tests/User.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension.sln -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/CreateCrud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/CreateCrud.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/CreateCrudPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/CreateCrudPackage.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/CreateCrudPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/CreateCrudPackage.vsct -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Dapper.Crud.VSExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Dapper.Crud.VSExtension.csproj -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Helpers/AssemblyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Helpers/AssemblyHelper.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Helpers/ClassGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Helpers/ClassGenerator.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Helpers/DapperGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Helpers/DapperGenerator.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Helpers/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Helpers/FileHelper.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Helpers/InterfaceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Helpers/InterfaceGenerator.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Helpers/MethodGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Helpers/MethodGenerator.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Helpers/ModelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Helpers/ModelHelper.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Helpers/ProjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Helpers/ProjectHelper.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Key.snk -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Logger/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Logger/Logger.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/ProvideToolboxControlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/ProvideToolboxControlAttribute.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Resources/ConfigureWindowCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Resources/ConfigureWindowCommand.png -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Resources/CreateCrud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Resources/CreateCrud.png -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Resources/CreateCrudPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Resources/CreateCrudPackage.ico -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Resources/Spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Resources/Spinner.gif -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Resources/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Resources/loading.gif -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Resources/settings.png -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/Resources/settingsbig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/Resources/settingsbig.png -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/VSPackage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/VSPackage.Designer.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/VSPackage.resx -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/app.config -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/dll/Dapper.Contrib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/dll/Dapper.Contrib.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/dll/Microsoft.AspNetCore.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/dll/Microsoft.AspNetCore.Mvc.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/dll/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/dll/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/dll/ScintillaNET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/dll/ScintillaNET.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/dll/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/dll/System.Web.Mvc.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/dll/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/dll/System.Web.Optimization.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/frmExtension.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/frmExtension.Designer.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/frmExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/frmExtension.cs -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/frmExtension.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/frmExtension.resx -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/index.html -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.Managed.Core.CurrentVersions.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.Managed.Core.CurrentVersions.targets -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.Managed.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.Managed.Core.targets -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/Microsoft.VisualBasic.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/Microsoft.VisualBasic.Core.targets -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/System.Buffers.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/System.Memory.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/VBCSCompiler.exe -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/cs/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/cs/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/cs/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/cs/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/csc.exe -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/csc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/csc.exe.config -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/csc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/csc.rsp -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/csi.exe -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/csi.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/csi.exe.config -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/csi.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/csi.rsp -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/de/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/de/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/de/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/de/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/es/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/es/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/es/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/es/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/fr/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/fr/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/fr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/fr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/it/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/it/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/it/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/it/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ja/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ja/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ja/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ja/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ko/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ko/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ko/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ko/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pl/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pl/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pl/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pl/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ru/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ru/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ru/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ru/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/tr/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/tr/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/tr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/tr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/vbc.exe -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/vbc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/vbc.exe.config -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/vbc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/vbc.rsp -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.Build.Tasks.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.Build.Tasks.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/roslyn/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/source.extension.vsixmanifest -------------------------------------------------------------------------------- /Dapper.Crud.VSExtension/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/Dapper.Crud.VSExtension/stylesheet.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/README.md -------------------------------------------------------------------------------- /dapper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiagoloureiro/Dapper.Crud.Extension/HEAD/dapper.gif --------------------------------------------------------------------------------