-
-
Notifications
You must be signed in to change notification settings - Fork 27
Add stable versioned API #289
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
72d6302
f0e4c3d
6c5710c
28da7c7
9724f2d
81f0db2
b015ee8
4496673
399670f
b930e5d
977fa01
cfe8557
b830432
6710734
ead445b
d86f3b3
ce2c3ca
0a67d85
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -40,6 +40,8 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.Analyzers.SDK.Testin | |
| EndProject | ||
| Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FSharp.Analyzers.Build", "src\FSharp.Analyzers.Build\FSharp.Analyzers.Build.csproj", "{34AD5A2D-5FDE-4A03-8AC5-100F54E6D2DF}" | ||
| EndProject | ||
| Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "OptionAnalyzer.V1", "samples\OptionAnalyzer.V1\OptionAnalyzer.V1.fsproj", "{71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}" | ||
| EndProject | ||
| Global | ||
| GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
| Debug|Any CPU = Debug|Any CPU | ||
|
|
@@ -49,9 +51,6 @@ Global | |
| Release|x64 = Release|x64 | ||
| Release|x86 = Release|x86 | ||
| EndGlobalSection | ||
| GlobalSection(SolutionProperties) = preSolution | ||
| HideSolutionNode = FALSE | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This appears to be the default, not that it seems to be documented anywhere. Anyway, Claude chose for inscrutable reasons to move it down the file.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should move to slnx anyway |
||
| EndGlobalSection | ||
| GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
| {C1D38B7A-0193-46AA-B033-ADBBF642AAA0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
| {C1D38B7A-0193-46AA-B033-ADBBF642AAA0}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
|
|
@@ -125,6 +124,21 @@ Global | |
| {34AD5A2D-5FDE-4A03-8AC5-100F54E6D2DF}.Release|x64.Build.0 = Release|Any CPU | ||
| {34AD5A2D-5FDE-4A03-8AC5-100F54E6D2DF}.Release|x86.ActiveCfg = Release|Any CPU | ||
| {34AD5A2D-5FDE-4A03-8AC5-100F54E6D2DF}.Release|x86.Build.0 = Release|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Debug|x64.ActiveCfg = Debug|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Debug|x64.Build.0 = Debug|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Debug|x86.ActiveCfg = Debug|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Debug|x86.Build.0 = Debug|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Release|Any CPU.Build.0 = Release|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Release|x64.ActiveCfg = Release|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Release|x64.Build.0 = Release|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Release|x86.ActiveCfg = Release|Any CPU | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB}.Release|x86.Build.0 = Release|Any CPU | ||
| EndGlobalSection | ||
| GlobalSection(SolutionProperties) = preSolution | ||
| HideSolutionNode = FALSE | ||
| EndGlobalSection | ||
| GlobalSection(NestedProjects) = preSolution | ||
| {C1D38B7A-0193-46AA-B033-ADBBF642AAA0} = {95A9FA19-723D-4D2C-A936-F0B45656B0D6} | ||
|
|
@@ -135,5 +149,6 @@ Global | |
| {9A9AC3F8-E34B-4C30-A52A-A507D6E0CA01} = {0FE81935-26A8-45E1-A62E-5148C73BA6A2} | ||
| {3C70D1B2-DDCE-439A-BAB2-AC6B2E0919D5} = {95A9FA19-723D-4D2C-A936-F0B45656B0D6} | ||
| {34AD5A2D-5FDE-4A03-8AC5-100F54E6D2DF} = {95A9FA19-723D-4D2C-A936-F0B45656B0D6} | ||
| {71366770-A3E2-4B3B-9FB5-391BDDAD2AFB} = {0FE81935-26A8-45E1-A62E-5148C73BA6A2} | ||
| EndGlobalSection | ||
| EndGlobal | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,6 +13,7 @@ | |
| <ItemGroup> | ||
| <Compile Include="TestHelpers.fs" /> | ||
| <Compile Include="UnitTests.fs" /> | ||
| <Compile Include="V1Tests.fs" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup> | ||
|
|
@@ -21,12 +22,15 @@ | |
| <PackageReference Include="NUnit" /> | ||
| <PackageReference Include="NUnit3TestAdapter" /> | ||
| <PackageReference Include="FSharp.Compiler.Service"/> | ||
| <PackageReference Include="FsCheck" /> | ||
| <PackageReference Include="FsCheck.NUnit" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup> | ||
| <ProjectReference Include="..\..\src\FSharp.Analyzers.SDK.Testing\FSharp.Analyzers.SDK.Testing.fsproj" /> | ||
| <ProjectReference Include="..\..\src\FSharp.Analyzers.SDK\FSharp.Analyzers.SDK.fsproj" /> | ||
| <ProjectReference Include="..\OptionAnalyzer\OptionAnalyzer.fsproj" /> | ||
| <ProjectReference Include="..\OptionAnalyzer.V1\OptionAnalyzer.V1.fsproj" /> | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Cloned the existing OptionAnalyzer but now coding it against the stable API rather than against the raw FCS API. |
||
| </ItemGroup> | ||
|
|
||
| </Project> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As of f0e4c3d this is the only part of the code that I wrote. (It's also all I've even read, so far.)