Skip to content

Commit

Permalink
Changes on main solution file(s) for CI/CD.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrdek committed Oct 15, 2023
1 parent 3146681 commit ea3d733
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 4 deletions.
Binary file modified .vs/ExporterUtility/DesignTimeBuild/.dtbcache
Binary file not shown.
Binary file modified .vs/ExporterUtility/v15/.suo
Binary file not shown.
Binary file modified .vs/ExporterUtility/v15/Server/sqlite3/storage.ide-shm
Binary file not shown.
Binary file modified .vs/ExporterUtility/v15/Server/sqlite3/storage.ide-wal
Binary file not shown.
18 changes: 14 additions & 4 deletions LinqPath/LinqPath.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,25 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<OutputType>dll</OutputType>
<TargetFramework>net462</TargetFramework>
<OutputType>Library</OutputType>
<TargetFramework>net461</TargetFramework>
<PackageId>LinqPath</PackageId>
<Version>1.2.3</Version>
<Authors>chr dek.</Authors>
<Company>Internet</Company>
<PackageDescription>Object to Folder structure creator using Linq</PackageDescription>
<RepositoryUrl>https://github.com/chrdek/linqpath_prerel</RepositoryUrl>
<ApplicationIcon />
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Compile Remove="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Properties\AssemblyInfo.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand All @@ -49,10 +59,10 @@
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<!--<ItemGroup>
<Compile Include="LinqPath.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
</ItemGroup>-->
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
Binary file modified LinqPath/bin/Debug/LinqPath.dll
Binary file not shown.
Binary file modified LinqPath/bin/Debug/LinqPath.pdb
Binary file not shown.
36 changes: 36 additions & 0 deletions LinqPath/bin/Debug/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using System.Reflection;
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("LinqPath")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("LinqPath")]
[assembly: AssemblyCopyright("Copyright © 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("442160b0-42b1-4971-b95a-5be0e17b12c5")]

// 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 Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

0 comments on commit ea3d733

Please sign in to comment.