Skip to content

Commit

Permalink
Merge pull request #48 from digital-phoenix/main
Browse files Browse the repository at this point in the history
Replaced the proposal system
  • Loading branch information
fortenforge authored Feb 16, 2024
2 parents 878afc6 + cc21e27 commit 12c0b55
Show file tree
Hide file tree
Showing 12 changed files with 1,460 additions and 562 deletions.
34 changes: 28 additions & 6 deletions CodeiumVS/CodeiumVS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@
<LangVersion>latest</LangVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'">
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|arm64'">
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'">
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|arm64'">
<LangVersion>preview</LangVersion>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand Down Expand Up @@ -37,6 +55,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand All @@ -45,13 +64,15 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="InlineDiff\InlineDiffAdornment.cs" />
<Compile Include="InlineDiff\InlineDiffControl.xaml.cs">
<DependentUpon>InlineDiffControl.xaml</DependentUpon>
</Compile>
<Compile Include="InlineDiff\InlineDiffView.cs" />
<Compile Include="SuggestionUI\StringCompare.cs" />
<Compile Include="LanguageServer\LanguageServerController.cs" />
<Compile Include="LanguageServer\LanguageServer.cs" />
<Compile Include="LanguageServer\Packets.cs" />
Expand All @@ -61,13 +82,13 @@
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Proposal\CodeiumProposalManager.cs" />
<Compile Include="Proposal\CodeiumProposalManagerProvider.cs" />
<Compile Include="Proposal\CodeiumProposalSource.cs" />
<Compile Include="Proposal\CodeiumProposalSourceProvider.cs" />
<Compile Include="Proposal\Mapper.cs" />
<Compile Include="QuickInfo\IntellisenseController.cs" />
<Compile Include="QuickInfo\QuickInfoSource.cs" />
<Compile Include="SuggestionUI\InlineGreyTextTagger.cs" />
<Compile Include="SuggestionUI\Mapper.cs" />
<Compile Include="SuggestionUI\SuggestionTag.cs" />
<Compile Include="SuggestionUI\SuggestionTagger.cs" />
<Compile Include="SuggestionUI\TextViewListener.cs" />
<Compile Include="Utilities\Extensions.cs" />
<Compile Include="Utilities\FileUtilities.cs" />
<Compile Include="Utilities\IntellisenseUtilities.cs" />
Expand Down Expand Up @@ -177,6 +198,7 @@
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand All @@ -186,4 +208,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>
66 changes: 0 additions & 66 deletions CodeiumVS/Proposal/CodeiumProposalManager.cs

This file was deleted.

26 changes: 0 additions & 26 deletions CodeiumVS/Proposal/CodeiumProposalManagerProvider.cs

This file was deleted.

205 changes: 0 additions & 205 deletions CodeiumVS/Proposal/CodeiumProposalSource.cs

This file was deleted.

Loading

0 comments on commit 12c0b55

Please sign in to comment.