Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Analyzers/CSharp/Analyzers/CSharpAnalyzers.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<Compile Include="$(MSBuildThisFileDirectory)PopulateSwitch\CSharpPopulateSwitchStatementDiagnosticAnalyzer.cs" />
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnreachableCode\CSharpRemoveUnreachableCodeDiagnosticAnalyzer.cs" />
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnreachableCode\RemoveUnreachableCodeHelpers.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseAutoProperty\CSharpUseAutoPropertyAnalyzer.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseCoalesceExpression\CSharpUseCoalesceExpressionDiagnosticAnalyzer.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseCoalesceExpression\CSharpUseCoalesceExpressionForNullableDiagnosticAnalyzer.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseCompoundAssignment\CSharpUseCompoundAssignmentDiagnosticAnalyzer.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<Compile Include="$(MSBuildThisFileDirectory)OrderModifiers\OrderModifiersCompilerErrorTests.cs" />
<Compile Include="$(MSBuildThisFileDirectory)OrderModifiers\OrderModifiersTests.cs" />
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnreachableCode\RemoveUnreachableCodeTests.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseAutoProperty\UseAutoPropertyTests.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseCoalesceExpression\UseCoalesceExpressionForNullableTests.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseCoalesceExpression\UseCoalesceExpressionTests.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseCompoundAssignment\UseCompoundAssignmentTests.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.UseAutoProperty
public class UseAutoPropertyTests : AbstractCSharpDiagnosticProviderBasedUserDiagnosticTest
{
internal override (DiagnosticAnalyzer, CodeFixProvider) CreateDiagnosticProviderAndFixer(Workspace workspace)
=> (new CSharpUseAutoPropertyAnalyzer(), new CSharpUseAutoPropertyCodeFixProvider());
=> (new CSharpUseAutoPropertyAnalyzer(), GetCSharpUseAutoPropertyCodeFixProvider());

[Fact, Trait(Traits.Feature, Traits.Features.CodeActionsUseAutoProperty)]
public async Task TestSingleGetterFromField()
Expand Down
1 change: 1 addition & 0 deletions src/Analyzers/Core/Analyzers/Analyzers.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnusedParametersAndValues\AbstractRemoveUnusedParametersAndValuesDiagnosticAnalyzer.cs" />
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnusedParametersAndValues\AbstractRemoveUnusedParametersAndValuesDiagnosticAnalyzer.SymbolStartAnalyzer.BlockAnalyzer.cs" />
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnusedParametersAndValues\AbstractRemoveUnusedParametersAndValuesDiagnosticAnalyzer.SymbolStartAnalyzer.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseAutoProperty\AbstractUseAutoPropertyAnalyzer.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseCoalesceExpression\AbstractUseCoalesceExpressionDiagnosticAnalyzer.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseCoalesceExpression\AbstractUseCoalesceExpressionForNullableDiagnosticAnalyzer.cs" />
<Compile Include="$(MSBuildThisFileDirectory)UseCollectionInitializer\AbstractObjectCreationExpressionAnalyzer.cs" />
Expand Down
3 changes: 3 additions & 0 deletions src/Analyzers/Core/Analyzers/AnalyzersResources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,9 @@
<data name="Use_null_propagation" xml:space="preserve">
<value>Use null propagation</value>
</data>
<data name="Use_auto_property" xml:space="preserve">
<value>Use auto property</value>
</data>
<data name="Format_string_contains_invalid_placeholder" xml:space="preserve">
<value>Format string contains invalid placeholder</value>
</data>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ internal abstract class AbstractUseAutoPropertyAnalyzer<
where TExpression : SyntaxNode
{
private static readonly LocalizableString s_title =
new LocalizableResourceString(nameof(FeaturesResources.Use_auto_property),
FeaturesResources.ResourceManager, typeof(FeaturesResources));
new LocalizableResourceString(nameof(AnalyzersResources.Use_auto_property),
AnalyzersResources.ResourceManager, typeof(AnalyzersResources));

protected AbstractUseAutoPropertyAnalyzer()
: base(IDEDiagnosticIds.UseAutoPropertyDiagnosticId, CodeStyleOptions2.PreferAutoProperties, s_title, s_title)
Expand Down
5 changes: 5 additions & 0 deletions src/Analyzers/Core/Analyzers/xlf/AnalyzersResources.cs.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
5 changes: 5 additions & 0 deletions src/Analyzers/Core/Analyzers/xlf/AnalyzersResources.de.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
5 changes: 5 additions & 0 deletions src/Analyzers/Core/Analyzers/xlf/AnalyzersResources.es.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
5 changes: 5 additions & 0 deletions src/Analyzers/Core/Analyzers/xlf/AnalyzersResources.fr.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
5 changes: 5 additions & 0 deletions src/Analyzers/Core/Analyzers/xlf/AnalyzersResources.it.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
5 changes: 5 additions & 0 deletions src/Analyzers/Core/Analyzers/xlf/AnalyzersResources.ja.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
5 changes: 5 additions & 0 deletions src/Analyzers/Core/Analyzers/xlf/AnalyzersResources.ko.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
5 changes: 5 additions & 0 deletions src/Analyzers/Core/Analyzers/xlf/AnalyzersResources.pl.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
5 changes: 5 additions & 0 deletions src/Analyzers/Core/Analyzers/xlf/AnalyzersResources.pt-BR.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
5 changes: 5 additions & 0 deletions src/Analyzers/Core/Analyzers/xlf/AnalyzersResources.ru.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
5 changes: 5 additions & 0 deletions src/Analyzers/Core/Analyzers/xlf/AnalyzersResources.tr.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,11 @@
<target state="new">Use 'System.HashCode'</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="new">Use auto property</target>
<note />
</trans-unit>
<trans-unit id="Use_coalesce_expression">
<source>Use coalesce expression</source>
<target state="new">Use coalesce expression</target>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ Namespace Microsoft.CodeAnalysis.VisualBasic.UseAutoProperty
If node.Kind() = SyntaxKind.IdentifierName Then
Dim symbolInfo = semanticModel.GetSymbolInfo(node)
If field.Equals(symbolInfo.Symbol) Then
If VisualBasicSemanticFactsService.Instance.IsWrittenTo(semanticModel, node, cancellationToken) Then
If DirectCast(node, ExpressionSyntax).IsWrittenTo(semanticModel, cancellationToken) Then
Return True
End If
End If
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnnecessaryParentheses\VisualBasicRemoveUnnecessaryParenthesesDiagnosticAnalyzer.vb" />
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnusedMembers\VisualBasicRemoveUnusedMembersDiagnosticAnalyzer.vb" />
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnusedParametersAndValues\VisualBasicRemoveUnusedParametersAndValuesDiagnosticAnalyzer.vb" />
<Compile Include="$(MSBuildThisFileDirectory)UseAutoProperty\Utilities.vb" />
<Compile Include="$(MSBuildThisFileDirectory)UseAutoProperty\VisualBasicUseAutoPropertyAnalyzer.vb" />
<Compile Include="$(MSBuildThisFileDirectory)UseCoalesceExpression\VisualBasicUseCoalesceExpressionDiagnosticAnalyzer.vb" />
<Compile Include="$(MSBuildThisFileDirectory)UseCoalesceExpression\VisualBasicUseCoalesceExpressionForNullableDiagnosticAnalyzer.vb" />
<Compile Include="$(MSBuildThisFileDirectory)UseCollectionInitializer\VisualBasicUseCollectionInitializerDiagnosticAnalyzer.vb" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.UnitTests.UseAutoProperty
Inherits AbstractVisualBasicDiagnosticProviderBasedUserDiagnosticTest

Friend Overrides Function CreateDiagnosticProviderAndFixer(workspace As Workspace) As (DiagnosticAnalyzer, CodeFixProvider)
Return (New VisualBasicUseAutoPropertyAnalyzer(), New VisualBasicUseAutoPropertyCodeFixProvider())
Return (New VisualBasicUseAutoPropertyAnalyzer(), GetVisualBasicUseAutoPropertyCodeFixProvider())
End Function

<Fact, Trait(Traits.Feature, Traits.Features.CodeActionsUseAutoProperty)>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnusedParametersAndValues\RemoveUnusedValueAssignmentTests.vb" />
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnusedParametersAndValues\RemoveUnusedValueExpressionStatementTests.vb" />
<Compile Include="$(MSBuildThisFileDirectory)RemoveUnusedParametersAndValues\RemoveUnusedValuesTestsBase.vb" />
<Compile Include="$(MSBuildThisFileDirectory)UseAutoProperty\UseAutoPropertyTests.vb" />
<Compile Include="$(MSBuildThisFileDirectory)UseCoalesceExpression\UseCoalesceExpressionForNullableTests.vb" />
<Compile Include="$(MSBuildThisFileDirectory)UseCoalesceExpression\UseCoalesceExpressionTests.vb" />
<Compile Include="$(MSBuildThisFileDirectory)UseCollectionInitializer\UseCollectionInitializerTests.vb" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@
using Microsoft.CodeAnalysis.CodeActions;
using Microsoft.CodeAnalysis.CodeFixes;
using Microsoft.CodeAnalysis.CSharp.MakeLocalFunctionStatic;
using Microsoft.CodeAnalysis.CSharp.UseAutoProperty;
using Microsoft.CodeAnalysis.Diagnostics;
using Microsoft.CodeAnalysis.Editor.UnitTests.CodeActions;
using Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces;
using Microsoft.CodeAnalysis.Text;
using Microsoft.CodeAnalysis.UnitTests.Diagnostics;
using Microsoft.CodeAnalysis.VisualBasic.UseAutoProperty;
using Roslyn.Test.Utilities;
using Roslyn.Utilities;
using Xunit;
Expand Down Expand Up @@ -238,6 +240,12 @@ private void AssertNoAnalyzerExceptionDiagnostics(IEnumerable<Diagnostic> diagno
// https://github.com/dotnet/roslyn/issues/43056 blocks porting the fixer to CodeStyle layer.
protected static CodeFixProvider GetMakeLocalFunctionStaticCodeFixProvider() => new MakeLocalFunctionStaticCodeFixProvider();

// https://github.com/dotnet/roslyn/issues/43091 blocks porting the fixer to CodeStyle layer.
protected static CodeFixProvider GetCSharpUseAutoPropertyCodeFixProvider() => new CSharpUseAutoPropertyCodeFixProvider();

// https://github.com/dotnet/roslyn/issues/43091 blocks porting the fixer to CodeStyle layer.
protected static CodeFixProvider GetVisualBasicUseAutoPropertyCodeFixProvider() => new VisualBasicUseAutoPropertyCodeFixProvider();

#endregion
}
}
3 changes: 0 additions & 3 deletions src/Features/Core/Portable/FeaturesResources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -816,9 +816,6 @@ Do you want to continue?</value>
<data name="attribute" xml:space="preserve">
<value>attribute</value>
</data>
<data name="Use_auto_property" xml:space="preserve">
<value>Use auto property</value>
</data>
<data name="Replace_0_and_1_with_property" xml:space="preserve">
<value>Replace '{0}' and '{1}' with property</value>
</data>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public sealed override Task RegisterCodeFixesAsync(CodeFixContext context)

context.RegisterCodeFix(
new UseAutoPropertyCodeAction(
FeaturesResources.Use_auto_property,
AnalyzersResources.Use_auto_property,
c => ProcessResultAsync(context, diagnostic, c),
priority),
diagnostic);
Expand Down Expand Up @@ -334,7 +334,7 @@ private static bool IsWrittenToOutsideOfConstructorOrProperty(
return true;
}

private class UseAutoPropertyCodeAction : CodeAction.SolutionChangeAction
private class UseAutoPropertyCodeAction : CustomCodeActions.SolutionChangeAction
{
public UseAutoPropertyCodeAction(string title, Func<CancellationToken, Task<Solution>> createChangedSolution, CodeActionPriority priority)
: base(title, createChangedSolution, title)
Expand Down
5 changes: 0 additions & 5 deletions src/Features/Core/Portable/xlf/FeaturesResources.cs.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -1683,11 +1683,6 @@ Chcete pokračovat?</target>
<target state="translated">atribut</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="translated">Použít automatickou vlastnost</target>
<note />
</trans-unit>
<trans-unit id="Replace_0_and_1_with_property">
<source>Replace '{0}' and '{1}' with property</source>
<target state="translated">Nahradit {0} a {1} vlastností</target>
Expand Down
5 changes: 0 additions & 5 deletions src/Features/Core/Portable/xlf/FeaturesResources.de.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -1683,11 +1683,6 @@ Möchten Sie fortfahren?</target>
<target state="translated">Attribut</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="translated">Automatisch generierte Eigenschaft verwenden</target>
<note />
</trans-unit>
<trans-unit id="Replace_0_and_1_with_property">
<source>Replace '{0}' and '{1}' with property</source>
<target state="translated">"{0}" und "{1}" durch Eigenschaft ersetzen</target>
Expand Down
5 changes: 0 additions & 5 deletions src/Features/Core/Portable/xlf/FeaturesResources.es.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -1683,11 +1683,6 @@ Do you want to continue?</source>
<target state="translated">atributo</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="translated">Usar propiedad automática</target>
<note />
</trans-unit>
<trans-unit id="Replace_0_and_1_with_property">
<source>Replace '{0}' and '{1}' with property</source>
<target state="translated">Reemplazar '{0}' y '{1}' por la propiedad</target>
Expand Down
5 changes: 0 additions & 5 deletions src/Features/Core/Portable/xlf/FeaturesResources.fr.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -1683,11 +1683,6 @@ Voulez-vous continuer ?</target>
<target state="translated">attribut</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="translated">Utiliser auto-property</target>
<note />
</trans-unit>
<trans-unit id="Replace_0_and_1_with_property">
<source>Replace '{0}' and '{1}' with property</source>
<target state="translated">Remplacer '{0}' et '{1}' par une propriété</target>
Expand Down
5 changes: 0 additions & 5 deletions src/Features/Core/Portable/xlf/FeaturesResources.it.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -1683,11 +1683,6 @@ Continuare?</target>
<target state="translated">attributo</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="translated">Usa la proprietà automatica</target>
<note />
</trans-unit>
<trans-unit id="Replace_0_and_1_with_property">
<source>Replace '{0}' and '{1}' with property</source>
<target state="translated">Sostituisci '{0}' e '{1}' con la proprietà</target>
Expand Down
5 changes: 0 additions & 5 deletions src/Features/Core/Portable/xlf/FeaturesResources.ja.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -1683,11 +1683,6 @@ Do you want to continue?</source>
<target state="translated">属性</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="translated">自動プロパティを使用する</target>
<note />
</trans-unit>
<trans-unit id="Replace_0_and_1_with_property">
<source>Replace '{0}' and '{1}' with property</source>
<target state="translated">{0}' および '{1}' をプロパティと置換する</target>
Expand Down
5 changes: 0 additions & 5 deletions src/Features/Core/Portable/xlf/FeaturesResources.ko.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -1683,11 +1683,6 @@ Do you want to continue?</source>
<target state="translated">특성</target>
<note />
</trans-unit>
<trans-unit id="Use_auto_property">
<source>Use auto property</source>
<target state="translated">auto 속성 사용</target>
<note />
</trans-unit>
<trans-unit id="Replace_0_and_1_with_property">
<source>Replace '{0}' and '{1}' with property</source>
<target state="translated">속성으로 '{0}' 및 '{1}' 바꾸기</target>
Expand Down
Loading