Activity overview
Latest activity by matilote
Hi Alex, Yes, SA 7 is installed on the machine. This is how does our csproj file look like. I am not able to share saproj, but it works to build an obfuscated file manually, so the error must lay somewhere in the csproj file below. <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>netcoreapp2.2</TargetFramework> <SmartAssemblyProjectFile>$(ProjectDir)$(AssemblyName).saproj</SmartAssemblyProjectFile> <_SATaskAssembly Condition="'$(MSBuildRuntimeType)' == 'Core'">SmartAssembly.MSBuild.Tasks_NetStandard, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7f465a1c156d4d57</_SATaskAssembly> <_SATaskAssembly Condition="'$(MSBuildRuntimeType)' != 'Core'">SmartAssembly.MSBuild.Tasks, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7f465a1c156d4d57</_SATaskAssembly> </PropertyGroup> <ItemGroup> <ProjectReference Include="..\xyz\src\XYZ\XYZ.Core\XYZ.Core.csproj" /> <ProjectReference Include="..\xyz\src\XYZ\XYZ.Network\XYZ.Network.csproj" /> </ItemGroup> <UsingTask TaskName="SmartAssembly.MSBuild.Tasks.Build" AssemblyName="$(_SATaskAssembly)" /> <Target Name="BuildWithSmartAssembly" AfterTargets="Build" Condition=" '$(Configuration)' == 'Release' "> <SmartAssembly.MSBuild.Tasks.Build ProjectFile="$(SmartAssemblyProjectFile)" /> </Target> </Project> / comments
Hi Alex,Yes, SA 7 is installed on the machine.This is how does our csproj file look like.I am not able to share saproj, but it works to build an obfuscated file manually, so the error must lay some...