Skip to content

Commit

Permalink
v0.7 files
Browse files Browse the repository at this point in the history
  • Loading branch information
Aebian committed Jun 17, 2023
1 parent 350cbd0 commit fbb212d
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 6 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ Thumbs.db
*.cache
*.ilk
*.log
*.csproj
[Bb]in
[Dd]ebug*/
*.lib
Expand Down
8 changes: 4 additions & 4 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
[assembly: AssemblyTitle("SilencerKI")]
[assembly: AssemblyDescription("Attach Silencers to any weapon with ease")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Knight Industries")]
[assembly: AssemblyCompany("nethavn A/S")]
[assembly: AssemblyProduct("SilencerKI")]
[assembly: AssemblyCopyright("© 2008 - 2020 by Knight Industries")]
[assembly: AssemblyCopyright("© 2008 - 2023 by nethavn A/S")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -33,7 +33,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.6.0.0")]
[assembly: AssemblyFileVersion("0.6.0.0")]
[assembly: AssemblyVersion("0.7.0.0")]
[assembly: AssemblyFileVersion("0.7.0.0")]
[assembly: NeutralResourcesLanguage("en-US")]

2 changes: 1 addition & 1 deletion SilencerKI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Developed By: Aebian
* Name: SilencerKI
* Dependent: Rage Plugin Hook
* Released On: GitHub
* Released On: GitHub, LCPDFR & GTA5-Mods.com
*/

[assembly: Rage.Attributes.Plugin("SilencerKI", Author = "Aebian", Description = "Attach Silencers to any weapon with ease", SupportUrl = "https://Aebian.org")]
Expand Down
62 changes: 62 additions & 0 deletions SilencerKI.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{2D7BD48D-0F45-4074-B3F4-806679FB359C}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SilencerKI</RootNamespace>
<AssemblyName>SilencerKI</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="RAGENativeUI">
<HintPath>..\SDKs\Rage\RAGENativeUI.dll</HintPath>
</Reference>
<Reference Include="RagePluginHookSDK">
<HintPath>..\SDKs\Rage\RagePluginHookSDK.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="SilencerKI.cs" />
<Compile Include="Utils\Updater.cs" />
<Compile Include="Utils\Notifier.cs" />
<Compile Include="Utils\Logger.cs" />
<Compile Include="Utils\Global.cs" />
<Compile Include="Utils\Core.cs" />
<Compile Include="Utils\Config.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

0 comments on commit fbb212d

Please sign in to comment.