Skip to content

Commit 25cc303

Browse files
dotnet-maestro[bot]ViktorHoferYuliiaKovalova
authored
[main] Update dependencies from dotnet/templating (#29969)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Viktor Hofer <viktor.hofer@microsoft.com> Co-authored-by: YuliiaKovalova <ykovalova@microsoft.com>
1 parent 1e2cc51 commit 25cc303

File tree

4 files changed

+4
-77
lines changed

4 files changed

+4
-77
lines changed

eng/Version.Details.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Dependencies>
33
<ProductDependencies>
4-
<Dependency Name="Microsoft.TemplateEngine.Abstractions" Version="8.0.100-alpha.1.23067.1">
4+
<Dependency Name="Microsoft.TemplateEngine.Abstractions" Version="8.0.100-alpha.1.23068.2">
55
<Uri>https://github.com/dotnet/templating</Uri>
6-
<Sha>b1fcea318f07681249f4d9ac33005eb99e77adb1</Sha>
6+
<Sha>4827cbc295e50af2f7162172e81514ad3b671bf0</Sha>
77
<SourceBuild RepoName="templating" ManagedOnly="true" />
88
</Dependency>
99
<Dependency Name="Microsoft.NETCore.App.Ref" Version="8.0.0-alpha.1.23067.11">

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
</PropertyGroup>
125125
<PropertyGroup>
126126
<!-- Dependencies from https://github.com/dotnet/templating -->
127-
<MicrosoftTemplateEngineAbstractionsPackageVersion>8.0.100-alpha.1.23067.1</MicrosoftTemplateEngineAbstractionsPackageVersion>
127+
<MicrosoftTemplateEngineAbstractionsPackageVersion>8.0.100-alpha.1.23068.2</MicrosoftTemplateEngineAbstractionsPackageVersion>
128128
<MicrosoftTemplateEngineEdgePackageVersion>$(MicrosoftTemplateEngineAbstractionsPackageVersion)</MicrosoftTemplateEngineEdgePackageVersion>
129129
<MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion>$(MicrosoftTemplateEngineAbstractionsPackageVersion)</MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion>
130130
<MicrosoftTemplateEngineUtilsPackageVersion>$(MicrosoftTemplateEngineAbstractionsPackageVersion)</MicrosoftTemplateEngineUtilsPackageVersion>
@@ -185,7 +185,7 @@
185185
</PropertyGroup>
186186
<!-- Test Dependencies -->
187187
<PropertyGroup>
188-
<FluentAssertionsVersion>6.8.0</FluentAssertionsVersion>
188+
<FluentAssertionsVersion>6.9.0</FluentAssertionsVersion>
189189
<FluentAssertionsJsonVersion>6.1.0</FluentAssertionsJsonVersion>
190190
<MicrosoftDotNetXUnitExtensionsVersion>8.0.0-beta.23054.2</MicrosoftDotNetXUnitExtensionsVersion>
191191
<MoqPackageVersion>4.8.2</MoqPackageVersion>

src/Cli/Microsoft.TemplateEngine.Cli/CliTemplateEngineHost.cs

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -83,27 +83,6 @@ public override bool TryGetHostParamDefault(string paramName, out string? value)
8383
}
8484
}
8585

86-
[Obsolete("Use " + nameof(Logger) + " instead")]
87-
void ITemplateEngineHost.LogDiagnosticMessage(string message, string category, params string[] details)
88-
{
89-
//do nothing if used
90-
//DefaultTemplateEngineHost may log these messages to Console
91-
}
92-
93-
[Obsolete("Use " + nameof(Logger) + " instead")]
94-
void ITemplateEngineHost.LogTiming(string label, TimeSpan duration, int depth)
95-
{
96-
//do nothing if used
97-
//DefaultTemplateEngineHost may log these messages to Console
98-
}
99-
100-
[Obsolete("Use " + nameof(Logger) + " instead")]
101-
void ITemplateEngineHost.LogMessage(string message)
102-
{
103-
//do nothing if used
104-
//DefaultTemplateEngineHost may log these messages to Console
105-
}
106-
10786
[Obsolete("Use CreationStatusResult instead")]
10887
bool ITemplateEngineHost.OnPotentiallyDestructiveChangesDetected(IReadOnlyList<IFileChange> changes, IReadOnlyList<IFileChange> destructiveChanges)
10988
{

src/Tests/Microsoft.TemplateEngine.Cli.UnitTests/CliTestHostFactory.cs

Lines changed: 0 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -113,64 +113,12 @@ public void Dispose()
113113

114114
#region Obsolete methods
115115
#pragma warning disable CA1041 // Provide ObsoleteAttribute message
116-
[Obsolete]
117-
void ITemplateEngineHost.OnSymbolUsed(string symbol, object value)
118-
{
119-
//do nothing
120-
}
121-
122-
[Obsolete]
123-
bool ITemplateEngineHost.OnParameterError(ITemplateParameter parameter, string receivedValue, string message, out string newValue)
124-
{
125-
//do nothing
126-
newValue = receivedValue;
127-
return false;
128-
}
129-
130-
[Obsolete]
131-
bool ITemplateEngineHost.OnNonCriticalError(string code, string message, string currentFile, long currentPosition)
132-
{
133-
//do nothing
134-
return false;
135-
}
136-
137-
[Obsolete]
138-
void ITemplateEngineHost.OnCriticalError(string code, string message, string currentFile, long currentPosition)
139-
{
140-
//do nothing
141-
}
142-
143-
[Obsolete]
144-
void ITemplateEngineHost.LogMessage(string message)
145-
{
146-
//do nothing
147-
}
148-
149116
[Obsolete]
150117
bool ITemplateEngineHost.OnPotentiallyDestructiveChangesDetected(IReadOnlyList<IFileChange> changes, IReadOnlyList<IFileChange> destructiveChanges)
151118
{
152119
//do nothing
153120
return false;
154121
}
155-
156-
[Obsolete]
157-
bool ITemplateEngineHost.OnConfirmPartialMatch(string name)
158-
{
159-
//do nothing
160-
return false;
161-
}
162-
163-
[Obsolete]
164-
void ITemplateEngineHost.LogDiagnosticMessage(string message, string category, params string[] details)
165-
{
166-
//do nothing
167-
}
168-
169-
[Obsolete]
170-
void ITemplateEngineHost.LogTiming(string label, TimeSpan duration, int depth)
171-
{
172-
//do nothing
173-
}
174122
#pragma warning restore CA1041 // Provide ObsoleteAttribute message
175123
#endregion
176124
}

0 commit comments

Comments
 (0)