0
votes
Build setup project with NAnt
Instead of trying to build using MSBUILD (assumption), build the solution or project using DEVENV.EXE. The command line is something along the lines of:
DEVENV MySolutionFile.sln /build DEB …
5
votes
Is there a standard framework for .NET parameter validation that uses attributes?
The Microsoft Enterprise Library has the Microsoft.Practices.EnterpriseLibrary.Validation library/namespace which allows validation using attributes.
…
2
votes
Securing an assembly so that it can’t be used by a third party.
I would suggest that you use the LicenseProvider attribute for securing use to your assembly. More information on the exact usage is available …
3
votes
double in .net
Double is a 64-bit floating point data type. It stores decimals as approximate values. If you need exact values, use the Decimal data type which is a …
0
votes
Any frameworks on Authentication & Authorization for Windows Form Application?
If you're not too keen on reinventing the wheel, have a look at a product called Visual Guard. It allows you to easily add security to your …
