Skip to content

Commit

Permalink
Make emit calls useable from dynamitey
Browse files Browse the repository at this point in the history
  • Loading branch information
jbtule committed Nov 8, 2023
1 parent 2c1f18e commit 76450f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ImpromptuInterface/ImpromptuInterface.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</PropertyGroup>
<Import Project="..\Version.props" />
<ItemGroup>
<PackageReference Include="Dynamitey" Version="3.0.2" />
<PackageReference Include="Dynamitey" Version="3.0.3" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net40'">
<Reference Include="Microsoft.CSharp" />
Expand Down
2 changes: 1 addition & 1 deletion ImpromptuInterface/src/EmitProxy/BuildProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ internal static class CompatHelper
///</summary>
public static class BuildProxy
{
public static readonly ActLikeMaker DefaultProxyMaker = new ActLikeMaker();
public static ActLikeMaker DefaultProxyMaker { get; } = new ActLikeMaker();

public static ActLikeMaker CollectableProxyMaker() => new ActLikeMaker(AssemblyBuilderAccess.RunAndCollect);

Expand Down
2 changes: 1 addition & 1 deletion Version.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<VersionPrefix>8.0.3</VersionPrefix>
<VersionPrefix>8.0.4</VersionPrefix>
</PropertyGroup>
</Project>

0 comments on commit 76450f5

Please sign in to comment.