Comments
Sort by recent activity
Reflector disassembles managed code (CLI). It doesn't work for unmanaged C or C++ code. / comments
Reflector disassembles managed code (CLI). It doesn't work for unmanaged C or C++ code.
Hi Alex,
I put the resources assembly (with stripped strong-name) in the target location of the build, but it didn't change anything (still the same error). / comments
Hi Alex,
I put the resources assembly (with stripped strong-name) in the target location of the build, but it didn't change anything (still the same error).
Hi Alex,
Thanks for the quick reply. My referenced Dll is in the GAC, so at least the hint path is not necessary. Also, with the new hint path being a relative path, it is dependent on the file structure on the machine, which could be different on another developer's machine. / comments
Hi Alex,
Thanks for the quick reply. My referenced Dll is in the GAC, so at least the hint path is not necessary. Also, with the new hint path being a relative path, it is dependent on the file str...
With Windows 10 and .NET 4.6 being out, a small update for SmartAssembly to correctly recognize them in feature usage reporting would be nice [image] / comments
With Windows 10 and .NET 4.6 being out, a small update for SmartAssembly to correctly recognize them in feature usage reporting would be nice
IIRC I had that bug when I used a SQL-server on a different machine, with the address given as
\serverSQLExpress
Instead, the address needs to be
serverSQLExpress
I.e. without the starting \. Since smartassembly is crashing on startup, you'll need to manually change it in the settings file in C:ProgramDataRed GateSmartAssembly. / comments
IIRC I had that bug when I used a SQL-server on a different machine, with the address given as
\serverSQLExpress
Instead, the address needs to be
serverSQLExpress
I.e. without the starting \. Sin...
nyxling wrote:
IF NOT EXIST "0001_Obfuscate" ( mkdir "0001_Obfuscate" )
IF EXIST "0001_Obfuscate\Assembly-CSharp.dll" ( del "0001_Obfuscate\Assembly-CSharp.dll" )
"C:\Program Files\Red Gate\SmartAssembly 6\SmartAssembly.com" /build "%system.teamcity.build.checkoutDir%/../0001.saproj"
IF EXIST "0001_Obfuscate\Assembly-CSharp.dll" ( copy "0001_Obfuscate\Assembly-CSharp.dll" "0001_Build\0001_Data\Managed\Assembly-CSharp.dll" )
AFAIK the copy command sets the errorlevel as well. So if the SA build fails, but the file was created, it gets copied. If copying succeeded, this will return 0.
So the correction would be:
"C:\Program Files\Red Gate\SmartAssembly 6\SmartAssembly.com" /build "%system.teamcity.build.checkoutDir%/../0001.saproj"
IF ERRORLEVEL 1 EXIT 1
IF EXIST "0001_Obfuscate\Assembly-CSharp.dll" ( copy "0001_Obfuscate\Assembly-CSharp.dll" "0001_Build\0001_Data\Managed\Assembly-CSharp.dll" )
/ comments
nyxling wrote:
IF NOT EXIST "0001_Obfuscate" ( mkdir "0001_Obfuscate" )
IF EXIST "0001_Obfuscate\Assembly-CSharp.dll" ( del "0001_Obfuscate\Assembly-CSharp.dll" )
"C:\Program Fi...