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
2 changes: 1 addition & 1 deletion eng/WpfArcadeSdk/tools/ExtendedAssemblyInfo.targets
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ using System.Runtime.Versioning;
<Delete Condition="Exists('$(GeneratedExtendedAssemblyInfoFile)')" Files="$(GeneratedExtendedAssemblyInfoFile)" />
<WriteLinesToFile Lines="@(ExtendedAssemblyInfoFileContent->'%(Text)')"
File="$(GeneratedExtendedAssemblyInfoFile)"
Overwrite="true" />
Overwrite="true" WriteOnlyWhenDifferent="true" />

<ItemGroup>
<Compile Include="$(GeneratedExtendedAssemblyInfoFile)" />
Expand Down
8 changes: 4 additions & 4 deletions eng/WpfArcadeSdk/tools/Wpf.Cpp.targets
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ END

<WriteLinesToFile Lines="@(_ExtendenNativeVersionFileLines)"
File="$(NativeResourceFileWithVersionInformation)"
Overwrite="true" />
Overwrite="true" WriteOnlyWhenDifferent="true" />

<ItemGroup>
<ResourceCompile Remove="$(NativeResourceFileWithVersionInformation)" />
Expand Down Expand Up @@ -267,7 +267,7 @@ using namespace System::Runtime::Versioning;

<WriteLinesToFile Lines="@(AssemblyInfoFile->'%(Text)')"
File="$(TargetFrameworkMonikerAssemblyAttributesPath)"
Overwrite="true" />
Overwrite="true" WriteOnlyWhenDifferent="true" />
<ItemGroup>
<ClCompile Include="$(TargetFrameworkMonikerAssemblyAttributesPath)">
<!-- The appropriate CompileAsManaged setting will automatically be set depending on the current CLRSupport value -->
Expand Down Expand Up @@ -387,7 +387,7 @@ using namespace System::Runtime::Versioning;

<WriteLinesToFile Lines="%(CppClrSupportProject.Text)"
File="$(CppCliHelperProject)"
Overwrite="false"/>
Overwrite="false" WriteOnlyWhenDifferent="true" />

<!--
Do not build - just ask ResolveReferences + IdentifyNetCoreReferences for the information
Expand Down Expand Up @@ -541,7 +541,7 @@ using namespace System::Runtime::Versioning;

<WriteLinesToFile Lines="%(CppSupportProject.Text)"
File="$(CppHelperProject)"
Overwrite="false"/>
Overwrite="false" WriteOnlyWhenDifferent="true" />

<!--
Do not build - just ask IdentifyNetCoreReferences for the information
Expand Down