Skip to content

Commit 6cfbb75

Browse files
committed
Adding assembly information
1 parent 6d91713 commit 6cfbb75

5 files changed

Lines changed: 58 additions & 17 deletions

File tree

OfCourseIStillLoveYou.Client/OfCourseIStillLoveYou.Client.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
<WarningLevel>4</WarningLevel>
3636
</PropertyGroup>
3737
<ItemGroup>
38+
<Reference Include="Assembly-CSharp">
39+
<HintPath>..\OfCourseIStillLoveYou\Dependencies\Assembly-CSharp.dll</HintPath>
40+
</Reference>
3841
<Reference Include="Google.Protobuf, Version=3.8.0.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
3942
<SpecificVersion>False</SpecificVersion>
4043
<HintPath>..\OfCourseIStillLoveYou\Dependencies\Google.Protobuf.dll</HintPath>

OfCourseIStillLoveYou.Client/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.0.0.0")]
3636
[assembly: AssemblyFileVersion("1.0.0.0")]
37+
38+
[assembly: KSPAssembly("OfCourseIStillLoveYou.Client", 1, 0)]

OfCourseIStillLoveYou.TUFX/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.0.0.0")]
3636
[assembly: AssemblyFileVersion("1.0.0.0")]
37+
38+
[assembly: KSPAssembly("OfCourseIStillLoveYou.TUFX", 1, 0)]

OfCourseIStillLoveYou/OfCourseIStillLoveYou.csproj

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
<HintPath>Dependencies\Assembly-CSharp.dll</HintPath>
3838
<Private>False</Private>
3939
</Reference>
40-
<Reference Include="HullCamera">
41-
<HintPath>Dependencies\HullCamera.dll</HintPath>
40+
<Reference Include="HullcamVDSContinued">
41+
<HintPath>Dependencies\HullcamVDSContinued.dll</HintPath>
4242
<Private>False</Private>
4343
</Reference>
4444
<Reference Include="KSPAssets">
@@ -111,6 +111,7 @@
111111
</Reference>
112112
</ItemGroup>
113113
<ItemGroup>
114+
<Compile Include="Properties\AssemblyInfo.cs" />
114115
<Compile Include="Settings.cs" />
115116
<Compile Include="TgpCamRotator.cs" />
116117
<Compile Include="Core.cs" />
@@ -127,9 +128,7 @@
127128
<Name>OfCourseIStillLoveYou.TUFX</Name>
128129
</ProjectReference>
129130
</ItemGroup>
130-
<ItemGroup>
131-
<Folder Include="Properties\" />
132-
</ItemGroup>
131+
<ItemGroup />
133132
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
134133
<PropertyGroup>
135134
<PostBuildEvent>
@@ -178,16 +177,16 @@ MD $(ProjectDir)Distribution\GameData\%25ModName%25\Plugins\
178177
xcopy /E /Y "$(ProjectDir)"Dependencies\win\grpc_csharp_ext.dll "$(ProjectDir)Distribution\GameData\%25ModName%25\Plugins\"
179178
</PreBuildEvent>
180179
</PropertyGroup>
181-
<Target Name="BeforeBuild">
182-
<ItemGroup>
183-
<AssemblyAttributes Include="AssemblyVersion">
184-
<_Parameter1>$(Version)</_Parameter1>
185-
</AssemblyAttributes>
186-
</ItemGroup>
187-
<MakeDir Directories="$(IntermediateOutputPath)" />
188-
<WriteCodeFragment Language="C#" OutputFile="$(IntermediateOutputPath)Version.cs" AssemblyAttributes="@(AssemblyAttributes)" />
189-
<ItemGroup>
190-
<Compile Include="$(IntermediateOutputPath)Version.cs" />
191-
</ItemGroup>
192-
</Target>
180+
<!-- <Target Name="BeforeBuild"> -->
181+
<!-- <ItemGroup> -->
182+
<!-- <AssemblyAttributes Include="AssemblyVersion"> -->
183+
<!-- <_Parameter1>$(Version)</_Parameter1> -->
184+
<!-- </AssemblyAttributes> -->
185+
<!-- </ItemGroup> -->
186+
<!-- <MakeDir Directories="$(IntermediateOutputPath)" /> -->
187+
<!-- <WriteCodeFragment Language="C#" OutputFile="$(IntermediateOutputPath)Version.cs" AssemblyAttributes="@(AssemblyAttributes)" /> -->
188+
<!-- <ItemGroup> -->
189+
<!-- <Compile Include="$(IntermediateOutputPath)Version.cs" /> -->
190+
<!-- </ItemGroup> -->
191+
<!-- </Target> -->
193192
</Project>
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("OfCourseIStillLoveYou")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("jrodrigv")]
12+
[assembly: AssemblyProduct("OfCourseIStillLoveYou.Properties")]
13+
[assembly: AssemblyCopyright("Copyright © 2021")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("7b4f15e2-dbfa-4412-a62b-3b543ea8a204")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
[assembly: AssemblyVersion("1.0.0.0")]
33+
[assembly: AssemblyFileVersion("1.0.0.0")]
34+
35+
[assembly: KSPAssembly("OfCourseIStillLoveYou", 1, 0)]

0 commit comments

Comments
 (0)