Replaced the old VS templates with ones that offer more flexiblity. Started replacing the Content Project for the samples with our custom project type. Inlcuded a basic not yet working AssimpImporter.
37 lines
2.0 KiB
C#
37 lines
2.0 KiB
C#
using System;
|
|
using System.Reflection;
|
|
using System.Resources;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// General Information about an assembly is controlled through the following
|
|
// set of attributes. Change these attribute values to modify the information
|
|
// associated with an assembly.
|
|
[assembly: AssemblyTitle("ANX Visual Studio Extensions")]
|
|
[assembly: AssemblyDescription("")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("")]
|
|
[assembly: AssemblyProduct("ANX Visual Studio Extensions")]
|
|
[assembly: AssemblyCopyright("")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
[assembly: ComVisible(false)]
|
|
[assembly: CLSCompliant(false)]
|
|
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
|
|
|
|
// Version information for an assembly consists of the following four values:
|
|
//
|
|
// Major Version
|
|
// Minor Version
|
|
// Build Number
|
|
// Revision
|
|
//
|
|
// You can specify all the values or you can default the Revision and Build Numbers
|
|
// by using the '*' as shown below:
|
|
|
|
[assembly: AssemblyVersion("1.0.0.0")]
|
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
|
|
[assembly: InternalsVisibleTo("ANXVisualStudio2012Package_IntegrationTests, PublicKey=002400000480000094000000060200000024000052534131000400000100010049a356b365af47f86f0f6c67e3eb0316575c08958cf6f11a972099817aba17f7009d7f6e0e4e9693a594e590696a361f0288657e00831156b817db9618c58753a60f78f736447d62fcb674c081471e156dd5fd93169c6bb78edbe576f0837f39b000d1856f5dc73ebb99cb07eec16afac2283a5e4f3c3acc03a969d2acfa7cc2")]
|
|
[assembly: InternalsVisibleTo("ANXVisualStudio2012Package_UnitTests, PublicKey=002400000480000094000000060200000024000052534131000400000100010049a356b365af47f86f0f6c67e3eb0316575c08958cf6f11a972099817aba17f7009d7f6e0e4e9693a594e590696a361f0288657e00831156b817db9618c58753a60f78f736447d62fcb674c081471e156dd5fd93169c6bb78edbe576f0837f39b000d1856f5dc73ebb99cb07eec16afac2283a5e4f3c3acc03a969d2acfa7cc2")]
|