Skip to content

Commit

Permalink
include language version and assembly version tags
Browse files Browse the repository at this point in the history
  • Loading branch information
karashiiro committed May 4, 2020
1 parent 470387a commit 80b2c47
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions DalamudPluginProjectTemplate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,30 @@

<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<LangVersion>8.0</LangVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>

<ItemGroup>
<Reference Include="Dalamud">
<HintPath>..\Dalamud\Dalamud\bin\Debug\Dalamud.dll</HintPath>
<HintPath>..\..\Dalamud\Dalamud\bin\Debug\Dalamud.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="ImGui.NET">
<HintPath>..\Dalamud\Dalamud\bin\Debug\ImGui.NET.dll</HintPath>
<HintPath>..\..\Dalamud\Dalamud\bin\Debug\ImGui.NET.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="ImGuiScene">
<HintPath>..\Dalamud\Dalamud\bin\Debug\ImGuiScene.dll</HintPath>
<HintPath>..\..\Dalamud\Dalamud\bin\Debug\ImGuiScene.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Lumina">
<HintPath>..\Dalamud\Dalamud\bin\Debug\Lumina.dll</HintPath>
<HintPath>..\..\Dalamud\Dalamud\bin\Debug\Lumina.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\Dalamud\Dalamud\bin\Debug\Newtonsoft.Json.dll</HintPath>
<HintPath>..\..\Dalamud\Dalamud\bin\Debug\Newtonsoft.Json.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
Expand Down

0 comments on commit 80b2c47

Please sign in to comment.