Skip to content

Commit

Permalink
EXE pack
Browse files Browse the repository at this point in the history
  • Loading branch information
featherbear committed Nov 18, 2022
1 parent 771126c commit 4598e75
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 14 deletions.
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions FodyWeavers.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd">
<Costura>
<Unmanaged32Assemblies>
Processing.NDI.Lib.x86
</Unmanaged32Assemblies>
<Unmanaged64Assemblies>
Processing.NDI.Lib.x64
</Unmanaged64Assemblies>
</Costura>
</Weavers>
29 changes: 15 additions & 14 deletions NDI Telestrator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,17 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<DebugSymbols>true</DebugSymbols>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<PropertyGroup>
<StartupObject>
</StartupObject>
<StartupObject>NDI_Telestrator.App</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -165,16 +164,10 @@
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<ContentWithTargetPath Include="lib\Processing.NDI.Lib.x64.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>Processing.NDI.Lib.x64.dll</TargetPath>
</ContentWithTargetPath>
<ContentWithTargetPath Include="lib\Processing.NDI.Lib.x86.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>Processing.NDI.Lib.x86.dll</TargetPath>
</ContentWithTargetPath>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody">
<Version>5.7.0</Version>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="MahApps.Metro">
<Version>2.4.5</Version>
</PackageReference>
Expand All @@ -192,5 +185,13 @@
<EmbedInteropTypes>False</EmbedInteropTypes>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Costura32\Processing.NDI.Lib.x86.dll" />
<EmbeddedResource Include="Costura64\Processing.NDI.Lib.x64.dll" />
<Resource Include="FodyWeavers.xml" />
</ItemGroup>
<ItemGroup>
<Folder Include="lib\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

0 comments on commit 4598e75

Please sign in to comment.